Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
matekelemen committed Aug 7, 2024
1 parent ad3c505 commit 7b4061a
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,25 +84,25 @@ jobs:
matrix:
sanitizer: [none, address]
type: [RelWithDebInfo, Release]
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build
run: |
if [ "${{ matrix.sanitizer }}" = "none" ]; then
bash build.sh -t "${{ matrix.type }}"
else
bash build.sh -t "${{ matrix.type }}" -o "-DCMAKE_CXX_FLAGS=-fsanitize=${{ matrix.sanitizer }}"
fi
shell: bash
- name: Run tests
run: |
git lfs install
git lfs pull
bash test/testrunner.sh
shell: bash
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build
run: |
if [ "${{ matrix.sanitizer }}" = "none" ]; then
bash build.sh -t "${{ matrix.type }}"
else
bash build.sh -t "${{ matrix.type }}" -o "-DCMAKE_CXX_FLAGS=-fsanitize=${{ matrix.sanitizer }}"
fi
shell: bash
- name: Run tests
run: |
git lfs install
git lfs pull
bash test/testrunner.sh
shell: bash

generate-docs:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 7b4061a

Please sign in to comment.