@@ -180,35 +180,35 @@ jobs:
180180 # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
181181 run : ctest --output-on-failure -C Debug
182182
183- windows_debug_fb_off :
184- runs-on : windows-latest
183+ # windows_debug_fb_off:
184+ # runs-on: windows-latest
185185
186- steps :
187- - uses : actions/checkout@v4
186+ # steps:
187+ # - uses: actions/checkout@v4
188188
189- - name : Create Build Environment
190- # Some projects don't allow in-source building, so create a separate build directory
191- # We'll use this as our working directory for all subsequent commands
192- run : cmake -E make_directory ${{runner.workspace}}/build
189+ # - name: Create Build Environment
190+ # # Some projects don't allow in-source building, so create a separate build directory
191+ # # We'll use this as our working directory for all subsequent commands
192+ # run: cmake -E make_directory ${{runner.workspace}}/build
193193
194- - name : Configure CMake All
195- shell : bash
196- working-directory : ${{runner.workspace}}/build
197- run : cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=Debug -DFAST_BUILD=OFF
194+ # - name: Configure CMake All
195+ # shell: bash
196+ # working-directory: ${{runner.workspace}}/build
197+ # run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=Debug -DFAST_BUILD=OFF
198198
199- - name : Build All
200- working-directory : ${{runner.workspace}}/build
201- shell : bash
202- # Execute the build. You can specify a specific target with "--target <NAME>"
203- run : |
204- cmake --build . --parallel --config Debug
199+ # - name: Build All
200+ # working-directory: ${{runner.workspace}}/build
201+ # shell: bash
202+ # # Execute the build. You can specify a specific target with "--target <NAME>"
203+ # run: |
204+ # cmake --build . --parallel --config Debug
205205
206- - name : Test All
207- working-directory : ${{runner.workspace}}/build
208- shell : bash
209- # Execute tests defined by the CMake configuration.
210- # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
211- run : ctest --parallel --timeout 300 --output-on-failure -C Debug
206+ # - name: Test All
207+ # working-directory: ${{runner.workspace}}/build
208+ # shell: bash
209+ # # Execute tests defined by the CMake configuration.
210+ # # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
211+ # run: ctest --parallel --timeout 300 --output-on-failure -C Debug
212212
213213 windows_release64 :
214214 runs-on : windows-2022
0 commit comments