@@ -37,27 +37,28 @@ jobs:
37
37
# 5.15.11 is for macos-12 and 5.15.12 is for macos-13
38
38
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
39
39
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