Skip to content

Commit

Permalink
Run with no boost in special cases workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dellaert committed Feb 6, 2023
1 parent 61a30b0 commit 798e4c7
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build-special.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
ubuntu-clang-tbb,
ubuntu-clang-cayleymap,
ubuntu-clang-system-libs,
ubuntu-no-boost,
]

build_type: [Debug, Release]
Expand Down Expand Up @@ -62,6 +63,12 @@ jobs:
version: "14"
flag: system

- name: ubuntu-no-boost
os: ubuntu-22.04
compiler: clang
version: "14"
flag: no_boost

steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -137,6 +144,13 @@ jobs:
# sudo apt-get install metis
# echo "GTSAM_USE_SYSTEM_METIS=ON" >> $GITHUB_ENV
- name: Turn off boost
if: matrix.flag == 'no_boost'
run: |
echo "GTSAM_ENABLE_BOOST_SERIALIZATION=OFF" >> $GITHUB_ENV
echo "GTSAM_USE_BOOST_FEATURES=OFF" >> $GITHUB_ENV
echo "GTSAM will not use BOOST"
- name: Build & Test
run: |
bash .github/scripts/unix.sh -t

0 comments on commit 798e4c7

Please sign in to comment.