Boost 1.84.0 #250
Workflow file for this run
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
name: Windows Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
release: | |
types: | |
- published | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
mode: [ Debug, Release ] | |
env: | |
CXX: cl.exe | |
CC: cl.exe | |
BUILDCACHE_COMPRESS: true | |
BUILDCACHE_DIRECT_MODE: true | |
BUILDCACHE_DIR: ${{ github.workspace }}/.buildcache | |
BUILDCACHE_ACCURACY: SLOPPY | |
BUILDCACHE_LUA_PATH: ${{ github.workspace }}/tools | |
CLICOLOR_FORCE: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install ninja | |
run: choco install ninja | |
# ==== RESTORE CACHE ==== | |
- name: Restore buildcache Cache | |
uses: actions/cache/restore@v4 | |
id: restore-buildcache | |
with: | |
path: ${{ github.workspace }}/.buildcache | |
key: buildcache-windows-${{ matrix.mode }}-${{ hashFiles('.pkg') }}-${{ hashFiles('**/*.h') }}-${{ hashFiles('**/*.cc') }} | |
restore-keys: | | |
buildcache-windows-${{ matrix.mode }}-${{ hashFiles('.pkg') }}-${{ hashFiles('**/*.h') }} | |
buildcache-windows-${{ matrix.mode }}-${{ hashFiles('.pkg') }}- | |
buildcache-windows-${{ matrix.mode }}- | |
- name: Restore Dependencies Cache | |
uses: actions/cache/restore@v4 | |
id: restore-deps-cache | |
with: | |
path: ${{ github.workspace }}/deps | |
key: deps-${{ hashFiles('.pkg') }} | |
restore-keys: deps- | |
# ==== BUILD ==== | |
- name: Build | |
run: | | |
$devShell = &"${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe" -latest -find **\Microsoft.VisualStudio.DevShell.dll | |
$installPath = &"${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe" -latest -property installationpath | |
Import-Module $devShell | |
Enter-VsDevShell -VsInstallPath $installPath -SkipAutomaticLocation -DevCmdArguments "-arch=amd64" | |
Get-ChildItem env: | |
cmake -GNinja -S . -B build -DCMAKE_BUILD_TYPE=${{ matrix.mode }} -DPPR_DEBUG_SYMBOLS=OFF -DPPR_MIMALLOC=ON | |
.\build\buildcache\bin\buildcache.exe -z | |
cmake --build build --target ppr-preprocess ppr-backend footrouting ppr-benchmark | |
$CompilerExitCode = $LastExitCode | |
Copy-Item ${env:VCToolsRedistDir}x64\Microsoft.VC143.CRT\*.dll .\build\ | |
.\build\buildcache\bin\buildcache.exe -s | |
exit $CompilerExitCode | |
# ==== DISTRIBUTION ==== | |
- name: Create Distribution | |
if: matrix.mode == 'Release' | |
run: | | |
mkdir dist | |
mv .\build\*.exe dist | |
mv .\build\*.dll dist | |
mv .\ui\web dist | |
- name: Upload Distribution | |
if: matrix.mode == 'Release' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ppr-windows | |
path: dist | |
# ==== RELEASE ==== | |
- name: Upload Release | |
if: github.event.action == 'published' && matrix.mode == 'Release' | |
uses: actions/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: ./ppr-windows.zip | |
asset_name: ppr-windows.zip | |
asset_content_type: application/zip | |
# ==== SAVE CACHE ==== | |
- name: Save buildcache Cache | |
if: always() && steps.restore-buildcache.outputs.cache-hit != 'true' | |
uses: actions/cache/save@v4 | |
with: | |
path: ${{ github.workspace }}/.buildcache | |
key: ${{ steps.restore-buildcache.outputs.cache-primary-key }} | |
- name: Save Dependencies Cache | |
if: always() && steps.restore-deps-cache.outputs.cache-hit != 'true' | |
uses: actions/cache/save@v4 | |
with: | |
path: ${{ github.workspace }}/deps | |
key: ${{ steps.restore-deps-cache.outputs.cache-primary-key }} |