Skip to content

Commit

Permalink
CI: add 32bit tests for linux
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Olivier <[email protected]>
  • Loading branch information
martin-olivier committed Jan 8, 2025
1 parent 96ebf45 commit 50d6275
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,30 @@ jobs:
working-directory: build
run: ctest --verbose

unit_tests_32bit_linux:
strategy:
fail-fast: false
matrix:
cxx-std: [11, 14, 17, 20]

name: debian-latest 32bit (C++${{ matrix.cxx-std }} - gcc)
runs-on: ubuntu-latest
container:
image: i386/debian:latest

steps:
- uses: actions/checkout@v4

- name: Generate project files
run: cmake . -B build -DCMAKE_CXX_STANDARD=${{ matrix.cxx-std }} -DDYLIB_BUILD_TESTS=ON -DDYLIB_WARNING_AS_ERRORS=ON

- name: Build dynamic library and unit tests
run: cmake --build build

- name: Run unit tests
working-directory: build
run: ctest --verbose

memory_check:
name: memory check
runs-on: ubuntu-24.04
Expand Down

0 comments on commit 50d6275

Please sign in to comment.