Skip to content

Commit

Permalink
CI: debug build comes first
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekazakov committed Nov 20, 2022
1 parent 07bc6b4 commit 97cd146
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,20 @@ jobs:
run: |
cd test-llvm-pstl && ./bootstrap.sh && cd -
cd test-msvc-stl && ./bootstrap.sh
- name: Build and run unit tests (Release)
run: |
mkdir build-release
cd build-release
cmake -DBUILD_TESTING=ON -DCMAKE_BUILD_TYPE=Release ..
make -j all pstld-build-llvm-tests pstld-build-msvc-tests pstld-build-custom-tests
make test
- name: Build and run unit tests (Debug)
run: |
mkdir build-debug
cd build-debug
cmake -DBUILD_TESTING=ON -DCMAKE_BUILD_TYPE=Debug ..
make -j all pstld-build-llvm-tests pstld-build-msvc-tests pstld-build-custom-tests
make test
- name: Build and run unit tests (Release)
run: |
mkdir build-release
cd build-release
cmake -DBUILD_TESTING=ON -DCMAKE_BUILD_TYPE=Release ..
make -j all pstld-build-llvm-tests pstld-build-msvc-tests pstld-build-custom-tests
make test
- name: Build and run unit tests (ASAN)
run: |
mkdir build-asan
Expand Down

0 comments on commit 97cd146

Please sign in to comment.