[ci] Remove the Windows cmake job (#4425)

This currently is running into space issues due to vcpkg that are
difficult to fix.
This commit is contained in:
Peter Johnson
2022-09-18 18:24:55 -07:00
committed by GitHub
parent 738c75fed8
commit 69b7b3dd7d

View File

@@ -49,35 +49,3 @@ jobs:
- name: test
working-directory: build
run: ctest --output-on-failure
build-windows:
env:
VCPKG_DEFAULT_TRIPLET: x64-windows
name: "Build - Windows"
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
- name: Install CMake
uses: lukka/get-cmake@v3.23.0
- name: Run vcpkg
uses: lukka/run-vcpkg@v10.2
with:
vcpkgDirectory: ${{ runner.workspace }}/vcpkg
vcpkgGitCommitId: f6af75acc923c833a5620943e3fc7d5e4930f0df # HEAD on 2022-04-10
runVcpkgInstall: true
- name: Install jinja
run: python -m pip install jinja2
- name: configure
run: mkdir build && cd build && cmake -DWITH_JAVA=OFF -DCMAKE_TOOLCHAIN_FILE=${{ runner.workspace }}/vcpkg/scripts/buildsystems/vcpkg.cmake ..
- name: build
working-directory: build
run: cmake --build . --parallel $(nproc)
- name: test
working-directory: build
run: ctest -C "Debug" --output-on-failure