github: rework clang-compilation CI #252
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: rvv-intrinsic-generator | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Prerequisites | |
run: | | |
sudo apt-get install clang-format | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r rvv-intrinsic-generator/requirements.txt | |
pylint --version | |
- name: Run yapf | |
run: | | |
make -C rvv-intrinsic-generator yapf-check | |
- name: Lint | |
run: | | |
make -C rvv-intrinsic-generator lint | |
- name: Type check | |
run: | | |
make -C rvv-intrinsic-generator type-check | |
- name: Check golden | |
run: | | |
make -C rvv-intrinsic-generator diff-autogen |