Skip to content

Commit 2266d1e

Browse files
committed
ci: extensions remove clang build
1 parent 5e82da2 commit 2266d1e

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -136,15 +136,16 @@ jobs:
136136
python-version: "3.11"
137137
cache: "pip"
138138
- name: Install Python dependencies
139-
run: |
140-
pip install -r requirements.txt
141-
pip install -v --no-build-isolation '.[dev]'
142-
pip install -v --no-build-isolation extensions/${{ matrix.extension }}
139+
run: pip install -r requirements.txt
140+
- name: Install RCS
141+
run: pip install -v --no-build-isolation '.[dev]'
142+
- name: Install extension
143+
run: pip install -v --no-build-isolation extensions/${{ matrix.extension }}
143144
- name: Check that stub files are up-to-date
144145
run: make -C extensions/${{ matrix.extension }} stubgen && git diff --exit-code
145-
- name: Clang build
146-
run: make -C extensions/${{ matrix.extension }} clangcompile PYTHON_EXECUTABLE=${{ steps.setup-python.outputs.python-path }}
147146
- name: Check clang format
148147
run: make -C extensions/${{ matrix.extension }} cppcheckformat
149148
# - name: Clang Tidy
150149
# run: make -C extensions/${{ matrix.extension }} cpplint
150+
# - name: Clang build
151+
# run: make -C extensions/${{ matrix.extension }} clangcompile PYTHON_EXECUTABLE=${{ steps.setup-python.outputs.python-path }}

0 commit comments

Comments
 (0)