From d14caf2420029a431b8685d9fcc8cecd18d0249a Mon Sep 17 00:00:00 2001 From: Nicolai Ommer Date: Sat, 24 Feb 2024 17:49:53 +0100 Subject: [PATCH] Disable broken Windows pipeline --- .github/workflows/build.yaml | 49 ++++++++++++++++++------------------ 1 file changed, 25 insertions(+), 24 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 74ee364..3ec7f35 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -37,27 +37,28 @@ jobs: # 5.15.11 is for macos-12 and 5.15.12 is for macos-13 run: PATH=/usr/local/Cellar/qt@5/5.15.11/lib/cmake/Qt5:/usr/local/Cellar/qt@5/5.15.12/lib/cmake/Qt5:$PATH && make - build-windows: - runs-on: windows-latest - steps: - - uses: actions/checkout@v4 - - - name: Install dependencies # saves / restores cache to avoid rebuilding dependencies - uses: lukka/run-vcpkg@v11 - with: - vcpkgGitCommitId: 8eb57355a4ffb410a2e94c07b4dca2dffbee8e50 - vcpkgDirectory: c:/vcpkg # folder must reside in c:\ otherwise qt wont install due to long path errors - - - name: Run CMake and run vcpkg to build packages - uses: lukka/run-cmake@v10 - with: - # this preset is needed to actually install the vcpkg dependencies - configurePreset: "ninja-multi-vcpkg" - configPresetAdditionalArgs: "[-DVCPKG_TARGET_TRIPLET=x64-windows]" - buildPreset: "ninja-multi-vcpkg" - buildPresetAdditionalArgs: "['--config Release']" - env: - # [OPTIONAL] Define the vcpkg's triplet you want to enforce, otherwise the default one - # for the hosting system will be automatically choosen (x64 is the default on all - # platforms, e.g. `x64-osx`). - VCPKG_DEFAULT_TRIPLET: "x64-windows" +# Windows build does not work currently, see https://github.com/RoboCup-SSL/grSim/issues/183 +# build-windows: +# runs-on: windows-latest +# steps: +# - uses: actions/checkout@v4 +# +# - name: Install dependencies # saves / restores cache to avoid rebuilding dependencies +# uses: lukka/run-vcpkg@v11 +# with: +# vcpkgGitCommitId: 8eb57355a4ffb410a2e94c07b4dca2dffbee8e50 +# vcpkgDirectory: c:/vcpkg # folder must reside in c:\ otherwise qt wont install due to long path errors +# +# - name: Run CMake and run vcpkg to build packages +# uses: lukka/run-cmake@v10 +# with: +# # this preset is needed to actually install the vcpkg dependencies +# configurePreset: "ninja-multi-vcpkg" +# configPresetAdditionalArgs: "[-DVCPKG_TARGET_TRIPLET=x64-windows]" +# buildPreset: "ninja-multi-vcpkg" +# buildPresetAdditionalArgs: "['--config Release']" +# env: +# # [OPTIONAL] Define the vcpkg's triplet you want to enforce, otherwise the default one +# # for the hosting system will be automatically choosen (x64 is the default on all +# # platforms, e.g. `x64-osx`). +# VCPKG_DEFAULT_TRIPLET: "x64-windows"