Skip to content

Commit

Permalink
Try to test gcc 8 in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-rifkin committed May 16, 2024
1 parent d6c971a commit aea7de3
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
compiler: [g++-10, clang++-14]
compiler: [g++-8, g++-10, clang++-14]
target: [Debug]
steps:
- uses: actions/checkout@v2
Expand All @@ -34,6 +34,32 @@ jobs:
working-directory: build
run: |
CTEST_OUTPUT_ON_FAILURE=1 make test
test-linux-gcc-8:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
compiler: [g++-8]
target: [Debug]
steps:
- uses: actions/checkout@v2
- name: dependencies
run: |
sudo apt install gcc-8 g++-8 libgcc-8-dev
python3 -m pip install git+https://github.com/jeffkaufman/icdiff.git
- name: build
run: |
mkdir -p build
cd build
cmake .. \
-DCMAKE_BUILD_TYPE=${{matrix.target}} \
-DCMAKE_CXX_COMPILER=${{matrix.compiler}} \
-DLIBASSERT_BUILD_TESTING=On
make -j
- name: test
working-directory: build
run: |
CTEST_OUTPUT_ON_FAILURE=1 make test
test-macos:
runs-on: macos-14
strategy:
Expand Down

0 comments on commit aea7de3

Please sign in to comment.