-
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0.8.x Build Troubleshooting Late November Early December 2023 SGT (#820)
* Adding CMakePresets.json and vcpkg-configuration.json; bumping Vega Strike version to 0.8.2 * Replace build.ps1 with version from 'master' branch * Update GitHub Actions workflow files * Troubleshooting Boost_Python on Windows * pinning Python version to 3.11 on macOS and Windows * macos-ci.yml: ... * python-version 3.12 * macos-ci.yml: Don't continue-on-error any longer * Set check-latest param of setup-python to true * macos-ci.yml: `brew install boost` explicitly * macos-ci.yml: ... * ... * Add brew-install-for-cmake.sh; start using it in macos-ci.yml * ... * brew-install-for-cmake.sh: The --keg-only brew option does not exist. Trying this instead * Continuing work on macos-ci.yml. Also refactoring CMakeLists.txt a bit * ... * ... * ... * ... * ... * ... * ... * ... * forgot about USE_PYTHON_3 * more on USE_PYTHON_3 * ... * CMakeLists.txt: So THAT's why PYTHON_VERSION_MAJOR and PYTHON_VERSION_MINOR were coming up blank * CMakeLists.txt: More on PYTHON_VERSION_MAJOR and PYTHON_VERSION_MINOR * CMakeLists.txt: More on PYTHON_VERSION_MAJOR and PYTHON_VERSION_MINOR * CMakeLists.txt: More on PYTHON_VERSION_MAJOR and PYTHON_VERSION_MINOR * CMakeLists.txt: More on PYTHON_VERSION_MAJOR and PYTHON_VERSION_MINOR * Various changes to 6 different copies of CMakeLists.txt in 6 different directories * engine/CMakeLists.txt: Handle Position Independent Code better on CMake versions [3.11, 3.14) * gnuhash.h, SharedPool.h: Fix build errors under VS2022 (hopefully). Formatting * More fixes * macos-ci.yml: Don't symlink openssl@3 in place of the Apple-provided SSL library
- Loading branch information
1 parent
8a7ca30
commit ff497c6
Showing
26 changed files
with
1,603 additions
and
589 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,59 +16,87 @@ jobs: | |
# This workflow contains a single job called "build" | ||
build: | ||
# The type of runner that the job will run on | ||
runs-on: windows-2019 | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- os: windows-2019 | ||
cmake-generator: VS2019Win64 | ||
enable-pie: 1 | ||
build-type: Release | ||
- os: windows-2022 | ||
cmake-generator: VS2022Win64 | ||
enable-pie: 1 | ||
build-type: Debug | ||
|
||
env: | ||
buildDir: '${{ github.workspace }}/build/' | ||
PYTHONHOME: '${{ github.workspace }}/v/packages/python3_x64-windows/tools/python3' | ||
# Indicates the location of vcpkg | ||
VCPKG_ROOT: '${{ github.workspace }}/v' | ||
# Tells vcpkg where binary packages are stored. | ||
VCPKG_DEFAULT_BINARY_CACHE: '${{ github.workspace }}/vbincache' | ||
## Let's use GitHub Action cache as storage for the vcpkg Binary Caching feature. | ||
#VCPKG_BINARY_SOURCES: 'clear;x-gha,readwrite' | ||
VCPKG_DEFAULT_TRIPLET: x64-windows | ||
VCPKG_DEFAULT_HOST_TRIPLET: x64-windows | ||
#PYTHONHOME: '${{ github.workspace }}/v/packages/python3_x64-windows/tools/python3' | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Set env vars needed for vcpkg to leverage the GitHub Action cache as a storage | ||
# for Binary Caching. | ||
- uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 #v6.4.1 | ||
with: | ||
script: | | ||
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); | ||
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || ''); | ||
- name: Set up Python | ||
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 #v4.7.1 | ||
with: | ||
python-version: '3.11.5' | ||
check-latest: true | ||
|
||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- name: checkout | ||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 #v3.5.3 | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1 | ||
|
||
- name: install-cmake | ||
uses: lukka/[email protected] | ||
- name: "Create directory '${{ env.VCPKG_DEFAULT_BINARY_CACHE }}'" | ||
run: mkdir -p $VCPKG_DEFAULT_BINARY_CACHE | ||
shell: bash | ||
|
||
- name: install-vcpkg | ||
# You may pin to the exact commit or the version. | ||
# uses: lukka/run-vcpkg@9c0ae56bad291f4b185cc433a9b56084b2962259 | ||
uses: lukka/run-vcpkg@v7 | ||
- name: install-cmake | ||
uses: lukka/get-cmake@4865386b66955d11be0abf8c112d0230023e742a #v3.27.9 | ||
with: | ||
vcpkgDirectory: '${{ github.workspace }}/v' | ||
setupOnly: true | ||
vcpkgGitCommitId: '49a30e9db17a8edf7c2809940ee2036746b1b982' | ||
vcpkgTriplet: 'x64-windows' | ||
appendedCacheKey: ${{ hashFiles( '**/vcpkg.json' ) }} | ||
additionalCachedPaths: ${{ env.buildDir }}/vcpkg_installed | ||
cmakeVersion: 3.27.9 | ||
ninjaVersion: 1.11.1 | ||
|
||
- name: run-cmake | ||
# You may pin to the exact commit or the version. | ||
# uses: lukka/run-cmake@7ba4481660f0f04c86cfa5f1f24b90effc97bde1 | ||
uses: lukka/run-cmake@v3 | ||
with: | ||
# Path to CMakeLists.txt. Used for both CMakeListsTxtBasic and CMakeListsTxtAdvanced modes. | ||
cmakeListsTxtPath: ${{ github.workspace }}/engine/CMakeLists.txt | ||
# Indicates whether to use vcpkg's CMake toolchain file if RUNVCPKG_VCPKG_ROOT environment variable is defined, for example by a previous run-vcpkg action execution. If the variable is defined, its content would be passed with '-DVCPKG_CHAINLOAD_TOOLCHAIN_FILE=<RUNVCPKG_VCPKG_ROOT>/scripts/buildsystems/vcpkg.cmake'. Used by any mode. | ||
useVcpkgToolchainFile: true | ||
# Specify the triplet used with vcpkg. Default value is RUNVCPKG_VCPKG_TRIPLET environment variable, which is set e.g. by the run-vcpkg. Possible values include any file name with no extension present in the vcpkgroot/trplet directory, e.g. x64-linux, x64-windows, x64-osx and so forth. Used by any mode. | ||
vcpkgTriplet: x64-windows | ||
# Select the build configuration, typically Debug or Release. Used by CMakeListsTxtBasic mode. | ||
cmakeBuildType: Release | ||
# Specify the CMake generator to use. Possible values: Ninja: Ninja, NinjaMulti: Ninja Multi-Config UnixMakefiles: Unix Makefiles, VS16Win64: Visual Studio 2019 x64, VS16Arm64: Visual Studio 2019 ARM64, VS16Arm: Visual Studio 2019 ARM, VS16Win32: Visual Studio 2019 Win32, VS15Win64: Visual Studio 2017 x64, VS15Arm64: Visual Studio 2017 ARM64, VS15Arm: Visual Studio 2017 ARM, VS15Win32: Visual Studio 2017 Win32. Used by CMakeListsTxtBasic mode. | ||
cmakeGenerator: VS16Win64 | ||
# Set the build directory, i.e. where CMake generates the build system files. Defaults to `$(Build.ArtifactStagingDirectory)` for CMakeLists.txt, and to `$(Build.ArtifactStagingDirectory)/<configuration-name>` for CMakeSettings.json. Used by any mode. | ||
buildDirectory: ${{ env.buildDir }} | ||
# Provides a mean to provide all the CMake arguments. This is required when using CMakeLists.txt in Advanced mode. For CMakeSettings.json, the arguments are already inferred, but you can append your arguments providing them here. Used by CMakeListsTxtAdvanced and CMakeSettingsJson modes. | ||
cmakeAppendedArgs: -DUSE_PYTHON_3=ON | ||
# Indicates whether to run 'cmake --build' after CMake project files have been generated successfully. Used by any mode. | ||
buildWithCMake: true | ||
# Additional parameters for both CMake and the make program (e.g. ninja or make). Separate CMake arguments to the native make program arguments with '--', such as: '--clean-first --config Debug -- -j0'. Used by both CMakeListsTxtBasic and CMakeListsTxtAdvanced modes | ||
buildWithCMakeArgs: "--config Release" | ||
# # Restore vcpkg from the GitHub Action cache service. Note that packages are restored by vcpkg's binary caching | ||
# # when it is being run afterward by CMake. | ||
# - name: restore-vcpkg | ||
# uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 #v3.3.1 | ||
# with: | ||
# # The first path is the location of vcpkg: it contains the vcpkg executable and data files, as long as the | ||
# # built package archives (aka binary cache) which are located by VCPKG_DEFAULT_BINARY_CACHE env var. | ||
# # The other paths starting with '!' are exclusions: they contain temporary files generated during the build of the installed packages. | ||
# path: | | ||
# ${{ env.VCPKG_ROOT }} | ||
# !${{ env.VCPKG_ROOT }}/buildtrees | ||
# !${{ env.VCPKG_ROOT }}/packages | ||
# !${{ env.VCPKG_ROOT }}/downloads | ||
# !${{ env.VCPKG_ROOT }}/installed | ||
# # The key is composed in a way that it gets properly invalidated whenever a different version of vcpkg is being used. | ||
# key: | | ||
# ${{ hashFiles( '.git/modules/vcpkg/HEAD' )}} | ||
|
||
- name: copy-build-artifacts | ||
- name: install-vcpkg | ||
#if: steps.cache.outputs.cache-hit != 'true' | ||
run: | | ||
mkdir bin | ||
xcopy /y .\build\Release\*.* .\bin\ | ||
xcopy /y .\build\objconv\Release\*.* .\bin\ | ||
git clone https://github.com/vegastrike/vcpkg-local.git ${{ env.VCPKG_ROOT }} | ||
${{ env.VCPKG_ROOT }}\bootstrap-vcpkg.bat -disableMetrics | ||
- name: run-build-script | ||
working-directory: ${{ github.workspace }} | ||
run: .\script\build.ps1 -Generator ${{ matrix.cmake-generator }} -EnablePIE ${{ matrix.enable-pie }} -BuildType ${{ matrix.build-type }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,12 +16,11 @@ jobs: | |
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 #v3.5.3 | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1 | ||
|
||
- name: Fortify on Demand Scan | ||
# You may pin to the exact commit or the version. | ||
# uses: fortify/gha-setup-fod-uploader@636f3c3a14aec1747eec5242a02c6349e4f3cce6 | ||
uses: fortify/[email protected] | ||
uses: fortify/gha-setup-fod-uploader@16e5036c084b26cee63cb0c38cfc2101cc9fd13d #v1.1.3 | ||
with: | ||
# FoDUploader version to use | ||
version: latest |
Oops, something went wrong.