From 90a166c1879775493288cc262106d1ba1876ede0 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sun, 17 Dec 2023 02:22:27 +0200 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 38 ++++++++++++++++++++++++++++++++++---- 1 file changed, 34 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7b0c763b24..041647e29b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: |