From 69b7b3dd7d1838de76b24bde122c32c75f9b1a02 Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Sun, 18 Sep 2022 18:24:55 -0700 Subject: [PATCH] [ci] Remove the Windows cmake job (#4425) This currently is running into space issues due to vcpkg that are difficult to fix. --- .github/workflows/cmake.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 30bd74d9ac..62196cebab 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -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