|
48 | 48 | - name: Install Dependencies |
49 | 49 | shell: powershell |
50 | 50 | run: | |
51 | | - Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh') |
| 51 | + iwr -useb get.scoop.sh -outfile 'install_scoop.ps1' |
| 52 | + .\install_scoop.ps1 -RunAsAdmin |
| 53 | +
|
52 | 54 | scoop install cmake --global # So we don't get issues with CMP0074 policy |
53 | 55 | scoop install ninja --global |
54 | 56 |
|
@@ -106,6 +108,21 @@ jobs: |
106 | 108 | cmake --build build -j 4 --config ${{ matrix.build_type }} --target gtsam |
107 | 109 | cmake --build build -j 4 --config ${{ matrix.build_type }} --target gtsam_unstable |
108 | 110 | cmake --build build -j 4 --config ${{ matrix.build_type }} --target wrap |
| 111 | +
|
| 112 | + # Run GTSAM tests |
109 | 113 | cmake --build build -j 4 --config ${{ matrix.build_type }} --target check.base |
110 | | - cmake --build build -j 4 --config ${{ matrix.build_type }} --target check.base_unstable |
| 114 | + cmake --build build -j 4 --config ${{ matrix.build_type }} --target check.basis |
| 115 | + cmake --build build -j 4 --config ${{ matrix.build_type }} --target check.discrete |
| 116 | + #cmake --build build -j 4 --config ${{ matrix.build_type }} --target check.geometry |
| 117 | + cmake --build build -j 4 --config ${{ matrix.build_type }} --target check.inference |
111 | 118 | cmake --build build -j 4 --config ${{ matrix.build_type }} --target check.linear |
| 119 | + cmake --build build -j 4 --config ${{ matrix.build_type }} --target check.navigation |
| 120 | + #cmake --build build -j 4 --config ${{ matrix.build_type }} --target check.nonlinear |
| 121 | + #cmake --build build -j 4 --config ${{ matrix.build_type }} --target check.sam |
| 122 | + cmake --build build -j 4 --config ${{ matrix.build_type }} --target check.sfm |
| 123 | + #cmake --build build -j 4 --config ${{ matrix.build_type }} --target check.slam |
| 124 | + cmake --build build -j 4 --config ${{ matrix.build_type }} --target check.symbolic |
| 125 | +
|
| 126 | + # Run GTSAM_UNSTABLE tests |
| 127 | + #cmake --build build -j 4 --config ${{ matrix.build_type }} --target check.base_unstable |
| 128 | + |
0 commit comments