Generate releases from tags #115
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: Build | |
on: | |
- push | |
- pull_request | |
env: | |
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite" | |
VCPKG_REPOSITORY: https://github.com/microsoft/vcpkg.git | |
VCPKG_REVISION: 137197a8f85e6c6cf1843ef024af7d9c28bb0bde | |
jobs: | |
static: | |
strategy: | |
fail-fast: true | |
matrix: | |
image: | |
- windows-2019 | |
- windows-2022 | |
name: static-${{ matrix.image }} | |
runs-on: ${{ matrix.image }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Export GitHub Actions cache environment variables | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); | |
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || ''); | |
- working-directory: 'C:/vcpkg' | |
run: git remote add openmw ${{ env.VCPKG_REPOSITORY }} | |
- working-directory: 'C:/vcpkg' | |
run: git fetch openmw | |
- working-directory: 'C:/vcpkg' | |
run: git checkout ${{ env.VCPKG_REVISION }} | |
- working-directory: 'C:/vcpkg' | |
run: ./bootstrap-vcpkg.bat -disableMetrics | |
- name: Install vcpkg packages | |
run: > | |
vcpkg install --overlay-ports=ports --triplet x64-windows-static | |
boost-geometry | |
boost-iostreams | |
boost-program-options | |
bullet3[double-precision,multithreading] | |
ffmpeg | |
freetype | |
icu | |
luajit | |
lz4 | |
mygui | |
openal-soft | |
openmw-osg | |
sdl2 | |
- name: Export installed vcpkg packages | |
run: > | |
vcpkg export | |
--x-all-installed | |
--raw | |
--output-dir ${{ github.workspace }} | |
--output intermediate | |
- name: Move pdb files | |
working-directory: '${{ github.workspace }}/intermediate' | |
run: | | |
robocopy installed pdb/installed *.pdb /S /MOVE | |
if ($lastexitcode -lt 8) { | |
$global:LASTEXITCODE = $null | |
} | |
- name: Archive pdb files | |
working-directory: '${{ github.workspace }}/intermediate/pdb' | |
run: 7z a "${{ github.workspace }}/vcpkg-x64-${{ matrix.image }}-static-pdb-${{ github.sha }}.7z" installed | |
- name: Store archived pdb files | |
uses: actions/upload-artifact@v4 | |
with: | |
name: vcpkg-x64-${{ matrix.image }}-static-pdb-${{ github.sha }} | |
path: ${{ github.workspace }}/vcpkg-x64-${{ matrix.image }}-static-pdb-${{ github.sha }}.7z | |
- name: Archive everything else | |
working-directory: '${{ github.workspace }}/intermediate' | |
run: 7z a "${{ github.workspace }}/vcpkg-x64-${{ matrix.image }}-static-${{ github.sha }}.7z" * -x!pdb | |
- name: Store exported vcpkg packages | |
uses: actions/upload-artifact@v4 | |
with: | |
name: vcpkg-x64-${{ matrix.image }}-static-${{ github.sha }} | |
path: ${{ github.workspace }}/vcpkg-x64-${{ matrix.image }}-static-${{ github.sha }}.7z | |
dynamic: | |
strategy: | |
fail-fast: true | |
matrix: | |
image: | |
- windows-2019 | |
- windows-2022 | |
name: dynamic-${{ matrix.image }} | |
runs-on: ${{ matrix.image }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Export GitHub Actions cache environment variables | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); | |
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || ''); | |
- working-directory: 'C:/vcpkg' | |
run: git remote add openmw ${{ env.VCPKG_REPOSITORY }} | |
- working-directory: 'C:/vcpkg' | |
run: git fetch openmw | |
- working-directory: 'C:/vcpkg' | |
run: git checkout ${{ env.VCPKG_REVISION }} | |
- working-directory: 'C:/vcpkg' | |
run: ./bootstrap-vcpkg.bat -disableMetrics | |
- name: Install vcpkg packages | |
run: > | |
vcpkg install --overlay-ports=ports --triplet x64-windows | |
boost-geometry | |
boost-iostreams | |
boost-program-options | |
bullet3[double-precision,multithreading] | |
ffmpeg | |
freetype | |
icu | |
luajit | |
lz4 | |
mygui | |
openal-soft | |
openmw-osg | |
sdl2 | |
- name: Export installed vcpkg packages | |
run: > | |
vcpkg export | |
--x-all-installed | |
--raw | |
--output-dir ${{ github.workspace }} | |
--output intermediate | |
- name: Move pdb files | |
working-directory: '${{ github.workspace }}/intermediate' | |
run: | | |
robocopy installed pdb/installed *.pdb /S /MOVE | |
if ($lastexitcode -lt 8) { | |
$global:LASTEXITCODE = $null | |
} | |
- name: Archive pdb files | |
working-directory: '${{ github.workspace }}/intermediate/pdb' | |
run: 7z a "${{ github.workspace }}/vcpkg-x64-${{ matrix.image }}-pdb-${{ github.sha }}.7z" installed | |
- name: Store archived pdb files | |
uses: actions/upload-artifact@v4 | |
with: | |
name: vcpkg-x64-${{ matrix.image }}-pdb-${{ github.sha }} | |
path: ${{ github.workspace }}/vcpkg-x64-${{ matrix.image }}-pdb-${{ github.sha }}.7z | |
- name: Archive everything else | |
working-directory: '${{ github.workspace }}/intermediate' | |
run: 7z a "${{ github.workspace }}/vcpkg-x64-${{ matrix.image }}-${{ github.sha }}.7z" * -x!pdb | |
- name: Store exported vcpkg packages | |
uses: actions/upload-artifact@v4 | |
with: | |
name: vcpkg-x64-${{ matrix.image }}-${{ github.sha }} | |
path: ${{ github.workspace }}/vcpkg-x64-${{ matrix.image }}-${{ github.sha }}.7z | |
- name: Repackage binaries for symbol server | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
if: ${{ env.AWS_ACCESS_KEY_ID != '' && env.AWS_SECRET_ACCESS_KEY != '' }} | |
run: .\Store-Symbols.ps1 ${{ github.workspace }}\intermediate | |
- name: Upload symbols to symbol server | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_DEFAULT_REGION: eu-west-3 | |
if: ${{ env.AWS_ACCESS_KEY_ID != '' && env.AWS_SECRET_ACCESS_KEY != '' }} | |
working-directory: ${{ github.workspace }}/SymStore | |
run: aws --endpoint-url https://rgw.ctrl-c.liu.se s3 sync --size-only --exclude * --include *.dl_ --include *.pd_ . s3://openmw-sym | |
push-dynamic: | |
needs: | |
- dynamic | |
runs-on: ubuntu-latest | |
if: startsWith(github.ref, 'refs/tags/') | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download all artifacts | |
uses: actions/download-artifact@v4 | |
- name: Rename artifacts | |
run: | | |
mv vcpkg-x64-*-${{ github.sha }}/vcpkg-x64-windows-2019-${{ github.sha }}.7z windows-2019-${{ github.ref_name }}.7z | |
mv vcpkg-x64-*-${{ github.sha }}/vcpkg-x64-windows-2022-${{ github.sha }}.7z windows-2022-${{ github.ref_name }}.7z | |
mv vcpkg-x64-*-${{ github.sha }}/vcpkg-x64-windows-2019-pdb-${{ github.sha }}.7z windows-2019-pdb-${{ github.ref_name }}.7z | |
mv vcpkg-x64-*-${{ github.sha }}/vcpkg-x64-windows-2022-pdb-${{ github.sha }}.7z windows-2022-pdb-${{ github.ref_name }}.7z | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: windows-*-${{ github.ref_name }}.7z | |
- name: Setup ssh-agent | |
env: | |
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} | |
if: ${{ env.SSH_PRIVATE_KEY != '' }} | |
uses: webfactory/ssh-agent@v0.9.0 | |
with: | |
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
- name: Import GPG key | |
id: import_gpg | |
env: | |
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} | |
GPG_PRIVATE_KEY_PASSPHRASE: ${{ secrets.GPG_PRIVATE_KEY_PASSPHRASE }} | |
if: ${{ env.GPG_PRIVATE_KEY != '' && env.GPG_PRIVATE_KEY_PASSPHRASE != '' }} | |
uses: crazy-max/ghaction-import-gpg@v6 | |
with: | |
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} | |
passphrase: ${{ secrets.GPG_PRIVATE_KEY_PASSPHRASE }} | |
- name: Configure ssh known hosts for gitlab.com | |
env: | |
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} | |
if: ${{ env.SSH_PRIVATE_KEY != '' }} | |
run: cat gitlab_known_hosts >> ~/.ssh/known_hosts | |
- name: Configure git user | |
run: | | |
git config --global user.email 'openmw-deps-build@users.noreply.github.com' | |
git config --global user.name 'openmw-deps-build' | |
- name: Configure git sign key | |
if: ${{ steps.import_gpg.outputs.fingerprint != '' }} | |
run: | | |
git config --global user.signkey ${{ steps.import_gpg.outputs.fingerprint }} | |
git config --global commit.gpgsign true | |
- name: Clone openmw-deps repository via SSH | |
env: | |
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} | |
GIT_LFS_SKIP_SMUDGE: 1 | |
# see https://github.com/git-lfs/git-lfs/issues/5749 | |
GIT_CLONE_PROTECTION_ACTIVE: false | |
if: ${{ env.SSH_PRIVATE_KEY != '' }} | |
run: git clone git@gitlab.com:OpenMW/openmw-deps.git | |
- name: Clone openmw-deps repository via HTTPS | |
env: | |
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} | |
GIT_LFS_SKIP_SMUDGE: 1 | |
# see https://github.com/git-lfs/git-lfs/issues/5749 | |
GIT_CLONE_PROTECTION_ACTIVE: false | |
if: ${{ env.SSH_PRIVATE_KEY == '' }} | |
run: git clone https://gitlab.com/OpenMW/openmw-deps.git | |
- name: Generate files containing a download url and hash | |
run: | | |
for file in windows-*-${{ github.ref_name }}.7z; do | |
echo "${{ github.server_url }}/${{ github.repository }}/releases/download/${{ github.ref_name }}/$file" > "openmw-deps/windows/$file.txt" | |
shasum -a 512 "$file" >> "openmw-deps/windows/$file.txt" | |
done | |
- name: Generate commit message | |
env: | |
GH_TOKEN: ${{ github.token }} | |
working-directory: ${{ github.workspace }}/openmw-deps | |
run: | | |
echo Add vcpkg package urls built at ${{ github.sha }} > commit_message.txt | |
echo >> commit_message.txt | |
printf 'Pushed by ' >> commit_message.txt | |
url=$(gh run --repo ${{ github.repository }} view ${{ github.run_id }} --json jobs --jq '.jobs[] | select(.name == "push-dynamic") | .url') | |
echo "${url:?}" >> commit_message.txt | |
echo >> commit_message.txt | |
- name: Commit generated metadata | |
working-directory: ${{ github.workspace }}/openmw-deps | |
run: | | |
git checkout -b vcpkg-x64-${{ github.sha }} | |
git add windows/windows-*-${{ github.ref_name }}.7z.txt | |
git commit -F commit_message.txt | |
- name: Verify commit to openmw-deps repository | |
if: ${{ steps.import_gpg.outputs.fingerprint != '' }} | |
working-directory: ${{ github.workspace }}/openmw-deps | |
run: git verify-commit HEAD | |
- name: Push generated metadata to gitlab | |
env: | |
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} | |
# Make sure only signed commits are pushed | |
if: ${{ vars.PUSH_URL != '' && env.SSH_PRIVATE_KEY != '' && steps.import_gpg.outputs.fingerprint != '' }} | |
working-directory: ${{ github.workspace }}/openmw-deps | |
run: | | |
git remote set-url --push origin "${{ vars.PUSH_URL }}" | |
git push origin vcpkg-x64-${{ github.sha }} |