Skip to content

Commit d14caf2

Browse files
committed
Disable broken Windows pipeline
1 parent aed1509 commit d14caf2

File tree

1 file changed

+25
-24
lines changed

1 file changed

+25
-24
lines changed

.github/workflows/build.yaml

+25-24
Original file line numberDiff line numberDiff line change
@@ -37,27 +37,28 @@ jobs:
3737
# 5.15.11 is for macos-12 and 5.15.12 is for macos-13
3838
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
3939

40-
build-windows:
41-
runs-on: windows-latest
42-
steps:
43-
- uses: actions/checkout@v4
44-
45-
- name: Install dependencies # saves / restores cache to avoid rebuilding dependencies
46-
uses: lukka/run-vcpkg@v11
47-
with:
48-
vcpkgGitCommitId: 8eb57355a4ffb410a2e94c07b4dca2dffbee8e50
49-
vcpkgDirectory: c:/vcpkg # folder must reside in c:\ otherwise qt wont install due to long path errors
50-
51-
- name: Run CMake and run vcpkg to build packages
52-
uses: lukka/run-cmake@v10
53-
with:
54-
# this preset is needed to actually install the vcpkg dependencies
55-
configurePreset: "ninja-multi-vcpkg"
56-
configPresetAdditionalArgs: "[-DVCPKG_TARGET_TRIPLET=x64-windows]"
57-
buildPreset: "ninja-multi-vcpkg"
58-
buildPresetAdditionalArgs: "['--config Release']"
59-
env:
60-
# [OPTIONAL] Define the vcpkg's triplet you want to enforce, otherwise the default one
61-
# for the hosting system will be automatically choosen (x64 is the default on all
62-
# platforms, e.g. `x64-osx`).
63-
VCPKG_DEFAULT_TRIPLET: "x64-windows"
40+
# Windows build does not work currently, see https://github.com/RoboCup-SSL/grSim/issues/183
41+
# build-windows:
42+
# runs-on: windows-latest
43+
# steps:
44+
# - uses: actions/checkout@v4
45+
#
46+
# - name: Install dependencies # saves / restores cache to avoid rebuilding dependencies
47+
# uses: lukka/run-vcpkg@v11
48+
# with:
49+
# vcpkgGitCommitId: 8eb57355a4ffb410a2e94c07b4dca2dffbee8e50
50+
# vcpkgDirectory: c:/vcpkg # folder must reside in c:\ otherwise qt wont install due to long path errors
51+
#
52+
# - name: Run CMake and run vcpkg to build packages
53+
# uses: lukka/run-cmake@v10
54+
# with:
55+
# # this preset is needed to actually install the vcpkg dependencies
56+
# configurePreset: "ninja-multi-vcpkg"
57+
# configPresetAdditionalArgs: "[-DVCPKG_TARGET_TRIPLET=x64-windows]"
58+
# buildPreset: "ninja-multi-vcpkg"
59+
# buildPresetAdditionalArgs: "['--config Release']"
60+
# env:
61+
# # [OPTIONAL] Define the vcpkg's triplet you want to enforce, otherwise the default one
62+
# # for the hosting system will be automatically choosen (x64 is the default on all
63+
# # platforms, e.g. `x64-osx`).
64+
# VCPKG_DEFAULT_TRIPLET: "x64-windows"

0 commit comments

Comments
 (0)