Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
christophkloeffel committed Oct 11, 2024
1 parent 4db6a88 commit 2c881c9
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ jobs:
test:
name: TestSuite
needs: lint
if: success()
strategy:
matrix:
os: [ubuntu-24.04, windows-latest, macos-13, macos-14]
Expand Down Expand Up @@ -86,16 +85,23 @@ jobs:
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements_dev.txt
- name: Cache node modules
- name: Cache clang-tidy
id: cache-clang-tidy
uses: actions/cache@v3
with:
path: ~/lobster/llvm-project/build/bin
path: ~/work/lobster/llvm-project/build/bin/clang-tidy
key: cache-clang-tidy
restore-keys: cache-clang-tidy
- if: ${{ steps.cache-clang-tidy.outputs.cache-hit != 'true' }}
name: Build clang-tidy
run: |
make clang-tidy
- if: ${{ steps.cache-clang-tidy.outputs.cache-hit != 'true' }}
name: Cache clang-tidy output
uses: actions/cache@v3
with:
path: ~/work/lobster/llvm-project/build/bin/clang-tidy
key: cache-clang-tidy
- name: Run integration tests
run: |
make integration-tests
Expand Down

0 comments on commit 2c881c9

Please sign in to comment.