Skip to content

Commit

Permalink
ci: Don't build unnecessary debug host dependencies (endless-sky#9247)
Browse files Browse the repository at this point in the history
  • Loading branch information
quyykk authored Aug 30, 2023
1 parent b7a34d2 commit 8b71911
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@
"inherits": "ci",
"cacheVariables": {
"CMAKE_CXX_COMPILER_LAUNCHER": "sccache",
"VCPKG_HOST_TRIPLET": "linux64-release",
"VCPKG_TARGET_TRIPLET": "linux64-release",
"ES_USE_OFFSCREEN": "ON"
}
Expand All @@ -194,6 +195,7 @@
"inherits": "ci",
"cacheVariables": {
"CMAKE_CXX_COMPILER_LAUNCHER": "sccache",
"VCPKG_HOST_TRIPLET": "linux64-release",
"VCPKG_TARGET_TRIPLET": "linux64-release",
"ES_GLES": "ON",
"ES_USE_OFFSCREEN": "ON"
Expand All @@ -206,6 +208,7 @@
"inherits": "ci",
"cacheVariables": {
"CMAKE_CXX_COMPILER_LAUNCHER": "sccache",
"VCPKG_HOST_TRIPLET": "macos64-release",
"VCPKG_TARGET_TRIPLET": "macos64-release",
"CMAKE_OSX_ARCHITECTURES": "x86_64",
"CMAKE_OSX_DEPLOYMENT_TARGET": "10.9"
Expand All @@ -218,6 +221,7 @@
"inherits": "ci",
"cacheVariables": {
"CMAKE_CXX_COMPILER_LAUNCHER": "sccache",
"VCPKG_HOST_TRIPLET": "x64-windows-release",
"VCPKG_TARGET_TRIPLET": "x64-windows-release",
"CMAKE_CXX_COMPILER": "clang-cl.exe"
}
Expand All @@ -231,6 +235,7 @@
"CMAKE_CXX_COMPILER_LAUNCHER": "sccache",
"CMAKE_CXX_COMPILER": "x86_64-w64-mingw32-g++",
"CMAKE_RC_COMPILER": "windres",
"VCPKG_HOST_TRIPLET": "win64-release",
"VCPKG_TARGET_TRIPLET": "win64-release"
}
},
Expand All @@ -241,6 +246,7 @@
"inherits": "release",
"cacheVariables": {
"CMAKE_CXX_COMPILER_LAUNCHER": "sccache",
"VCPKG_HOST_TRIPLET": "linux64-release",
"VCPKG_TARGET_TRIPLET": "linux64-release"
}
},
Expand All @@ -252,6 +258,7 @@
"cacheVariables": {
"ES_CREATE_BUNDLE": "ON",
"CMAKE_CXX_COMPILER_LAUNCHER": "sccache",
"VCPKG_HOST_TRIPLET": "macos64-release",
"VCPKG_TARGET_TRIPLET": "macos64-release",
"CMAKE_OSX_ARCHITECTURES": "x86_64",
"CMAKE_OSX_DEPLOYMENT_TARGET": "10.9"
Expand All @@ -269,6 +276,7 @@
"cacheVariables": {
"ES_CREATE_BUNDLE": "ON",
"CMAKE_CXX_COMPILER_LAUNCHER": "sccache",
"VCPKG_HOST_TRIPLET": "macos64-release",
"VCPKG_TARGET_TRIPLET": "macos-arm64-release",
"CMAKE_OSX_ARCHITECTURES": "arm64",
"CMAKE_OSX_DEPLOYMENT_TARGET": "10.9"
Expand All @@ -284,6 +292,7 @@
"CMAKE_CXX_COMPILER_LAUNCHER": "sccache",
"CMAKE_CXX_COMPILER": "x86_64-w64-mingw32-g++",
"CMAKE_RC_COMPILER": "windres",
"VCPKG_HOST_TRIPLET": "win64-release",
"VCPKG_TARGET_TRIPLET": "win64-release"
}
},
Expand All @@ -296,6 +305,7 @@
"ES_CREATE_BUNDLE": "ON",
"CMAKE_CXX_COMPILER": "i686-w64-mingw32-g++",
"CMAKE_RC_COMPILER": "windres",
"VCPKG_HOST_TRIPLET": "win64-release",
"VCPKG_TARGET_TRIPLET": "win32-release"
}
}
Expand Down

0 comments on commit 8b71911

Please sign in to comment.