Update ci.yml

This commit is contained in:
Peter Dimov 2023-12-17 02:22:27 +02:00
parent e89b129366
commit 90a166c187

View file

@ -92,6 +92,7 @@ jobs:
- os: macos-13
runs-on: ${{matrix.os}}
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
@ -144,6 +145,35 @@ jobs:
cmake --build . -j 3 --target install
cmake-test-posix:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Configure Boost
run: |
mkdir __build__ && cd __build__
cmake -DBUILD_TESTING=ON -DBOOST_EXCLUDE_LIBRARIES="lockfree;outcome;process;static_string;url" ..
- name: Build tests
run: |
cd __build__
cmake --build . -j 3 --target tests
- name: Run tests
run: |
cd __build__
ctest --output-on-failure --no-tests=error -j 3
cmake-test-posix-quick:
strategy:
fail-fast: false
matrix:
@ -170,14 +200,14 @@ jobs:
- name: Build tests
run: |
cd __build__
cmake --build . -j 3 --target tests
cmake --build . -j 3 --target tests-quick
- name: Run tests
run: |
cd __build__
ctest --output-on-failure --no-tests=error -j 3 -R quick
cmake-test-windows:
cmake-test-windows-quick:
strategy:
fail-fast: false
matrix:
@ -195,12 +225,12 @@ jobs:
- name: Configure Boost
run: |
mkdir __build__ && cd __build__
cmake -DBUILD_TESTING=ON -DBOOST_EXCLUDE_LIBRARIES="convert;outcome" ..
cmake -DBUILD_TESTING=ON ..
- name: Build tests
run: |
cd __build__
cmake --build . -j 3 --target tests
cmake --build . -j 3 --target tests-quick
- name: Run tests
run: |