Skip to content

Commit

Permalink
reorganize CI workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
varunagrawal committed Jul 3, 2023
1 parent ea57cd2 commit e00e123
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,20 @@ jobs:
BOOST_EXE: boost_1_72_0-msvc-14.2

strategy:
fail-fast: false
fail-fast: true
matrix:
build_type:
- Debug
- Release

build_unstable:
- ON
# - OFF
# Github Actions requires a single row to be added to the build matrix.
# See https://help.github.com/en/articles/workflow-syntax-for-github-actions.
name: [
windows-2019-cl,
]

build_type: [
Debug,
Release
]

build_unstable: [ON]
include:
- name: windows-2019-cl
os: windows-2019
Expand Down Expand Up @@ -123,11 +128,11 @@ jobs:
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.slam
# Run GTSAM_UNSTABLE tests
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.base_unstable
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.geometry_unstable
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.linear_unstable
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.discrete_unstable
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.dynamics_unstable
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.nonlinear_unstable
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.slam_unstable
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.partition
cmake --build build -j4 --config ${{ matrix.build_type }} --target check.base_unstable

0 comments on commit e00e123

Please sign in to comment.