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 f99890b
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,34 @@ 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 build -- j2
- name: Run tests
run: ctest --output-on-failure
working-directory: build

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

0 comments on commit f99890b

Please sign in to comment.