Skip to content

Commit

Permalink
tests: add Boost test (back)
Browse files Browse the repository at this point in the history
  • Loading branch information
henryiii committed Sep 27, 2021
1 parent 8d7c419 commit 5796dbd
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,33 @@ jobs:
submodules: true
- name: Add wget
run: apt-get update && apt-get install -y wget
- name: Setup cmake
- name: Get cmake
uses: jwlawson/[email protected]
- name: Configure
run: cmake -S . -B build -DCLI11_CUDA_TESTS=ON
- name: Build
run: cmake --build build -j2


boost-build:
name: Boost build
runs-on: ubuntu-latest
container: zouzias/boost:1.76.0
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Add deps
run: apt-get update && apt-get install make
- name: Get CMake
uses: jwlawson/[email protected]
- name: Configure
run: cmake -S . -B build -DCLI11_BOOST=ON
- name: Build
run: cmake --build . -- j2
- name: Run tests
run: ctest --output-on-failure

cmake-config:
name: CMake config check
runs-on: ubuntu-latest
Expand Down

0 comments on commit 5796dbd

Please sign in to comment.