diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 565a02756..98218a894 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -99,64 +99,65 @@ jobs: cmake -B build -S . -DGTSAM_BUILD_EXAMPLES_ALWAYS=OFF -DBOOST_ROOT="${env:BOOST_ROOT}" -DBOOST_INCLUDEDIR="${env:BOOST_ROOT}\boost\include" -DBOOST_LIBRARYDIR="${env:BOOST_ROOT}\lib" - name: Build - shell: cmd run: | - :: Since Visual Studio is a multi-generator, we need to use --config - :: https://stackoverflow.com/a/24470998/1236990 + # Since Visual Studio is a multi-generator, we need to use --config + # https://stackoverflow.com/a/24470998/1236990 cmake --build build -j4 --config ${{ matrix.build_type }} --target gtsam cmake --build build -j4 --config ${{ matrix.build_type }} --target gtsam_unstable - :: Target doesn't exist - :: cmake --build build -j4 --config ${{ matrix.build_type }} --target wrap + # Target doesn't exist + # cmake --build build -j4 --config ${{ matrix.build_type }} --target wrap - name: Test - shell: cmd run: | - :: Run GTSAM tests + # Run GTSAM tests cmake --build build -j4 --config ${{ matrix.build_type }} --target check.base cmake --build build -j4 --config ${{ matrix.build_type }} --target check.basis cmake --build build -j4 --config ${{ matrix.build_type }} --target check.discrete - cmake --build build -j4 --config ${{ matrix.build_type }} --target check.geometry + + # Compilation error + # cmake --build build -j4 --config ${{ matrix.build_type }} --target check.geometry + cmake --build build -j4 --config ${{ matrix.build_type }} --target check.inference - :: Compile. Fail with exception - :: cmake --build build -j4 --config ${{ matrix.build_type }} --target check.linear + # Compile. Fail with exception + cmake --build build -j4 --config ${{ matrix.build_type }} --target check.linear cmake --build build -j4 --config ${{ matrix.build_type }} --target check.navigation cmake --build build -j4 --config ${{ matrix.build_type }} --target check.sam cmake --build build -j4 --config ${{ matrix.build_type }} --target check.sfm cmake --build build -j4 --config ${{ matrix.build_type }} --target check.symbolic - :: Compile. Fail with exception - :: cmake --build build -j4 --config ${{ matrix.build_type }} --target check.hybrid + # Compile. Fail with exception + cmake --build build -j4 --config ${{ matrix.build_type }} --target check.hybrid - :: Compile. Fail with exception - :: cmake --build build -j4 --config ${{ matrix.build_type }} --target check.nonlinear + # Compile. Fail with exception + # cmake --build build -j4 --config ${{ matrix.build_type }} --target check.nonlinear - :: Compilation error - :: cmake --build build -j4 --config ${{ matrix.build_type }} --target check.slam + # Compilation error + # cmake --build build -j4 --config ${{ matrix.build_type }} --target check.slam - :: Run GTSAM_UNSTABLE tests + # Run GTSAM_UNSTABLE tests cmake --build build -j4 --config ${{ matrix.build_type }} --target check.base_unstable - :: Compile. Fail with exception - :: cmake --build build -j4 --config ${{ matrix.build_type }} --target check.geometry_unstable + # Compile. Fail with exception + # cmake --build build -j4 --config ${{ matrix.build_type }} --target check.geometry_unstable - :: Compile. Fail with exception - :: cmake --build build -j4 --config ${{ matrix.build_type }} --target check.linear_unstable + # Compile. Fail with exception + # cmake --build build -j4 --config ${{ matrix.build_type }} --target check.linear_unstable - :: Compile. Fail with exception - :: cmake --build build -j4 --config ${{ matrix.build_type }} --target check.discrete_unstable + # Compile. Fail with exception + # cmake --build build -j4 --config ${{ matrix.build_type }} --target check.discrete_unstable - :: Compile. Fail with exception - :: cmake --build build -j4 --config ${{ matrix.build_type }} --target check.dynamics_unstable + # Compile. Fail with exception + # cmake --build build -j4 --config ${{ matrix.build_type }} --target check.dynamics_unstable - :: Compile. Fail with exception - :: cmake --build build -j4 --config ${{ matrix.build_type }} --target check.nonlinear_unstable + # Compile. Fail with exception + # cmake --build build -j4 --config ${{ matrix.build_type }} --target check.nonlinear_unstable - :: Compilation error - :: cmake --build build -j4 --config ${{ matrix.build_type }} --target check.slam_unstable + # Compilation error + # cmake --build build -j4 --config ${{ matrix.build_type }} --target check.slam_unstable - :: Compilation error - :: cmake --build build -j4 --config ${{ matrix.build_type }} --target check.partition + # Compilation error + # cmake --build build -j4 --config ${{ matrix.build_type }} --target check.partition