-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add jobs to build openmw dependencies using vcpkg
- Loading branch information
Showing
2 changed files
with
198 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,195 @@ | ||
name: Build | ||
|
||
on: push | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
env: | ||
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite" | ||
VCPKG_REPOSITORY: https://github.com/openmw/vcpkg.git | ||
VCPKG_REVISION: dbbbfe8f58195ba49f3141dbba7a4f4b35e92052 | ||
GPG_KEY: 8D5838140D294CE3C17ED6AE31FC2142D139BD97 | ||
|
||
jobs: | ||
static: | ||
strategy: | ||
fail-fast: true | ||
|
||
runs-on: windows-latest | ||
|
||
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 --triplet x64-windows-static | ||
boost-geometry | ||
boost-iostreams | ||
boost-locale | ||
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 | ||
--7zip | ||
--output-dir ${{ github.workspace }} | ||
--output vcpkg-x64-windows-static-${{ github.sha }} | ||
- name: Store exported vcpkg packages | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: vcpkg-x64-windows-static-${{ github.sha }} | ||
path: ${{ github.workspace }}/vcpkg-x64-windows-static-${{ github.sha }}.7z | ||
|
||
dynamic: | ||
strategy: | ||
fail-fast: true | ||
|
||
runs-on: windows-latest | ||
|
||
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 --triplet x64-windows | ||
boost-geometry | ||
boost-iostreams | ||
boost-locale | ||
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 | ||
--7zip | ||
--output-dir ${{ github.workspace }} | ||
--output vcpkg-x64-windows-${{ github.sha }} | ||
- name: Store exported vcpkg packages | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: vcpkg-x64-windows-${{ github.sha }} | ||
path: ${{ github.workspace }}/vcpkg-x64-windows-${{ github.sha }}.7z | ||
|
||
- name: Setup ssh-agent | ||
uses: webfactory/[email protected] | ||
with: | ||
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | ||
|
||
- name: Import GPG key | ||
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 | ||
run: cat gitlab_known_hosts >> ~/.ssh/known_hosts | ||
|
||
- name: Configure git | ||
run: | | ||
git config --global user.email '[email protected]' | ||
git config --global user.name 'openmw-deps-build' | ||
git config --global user.signkey ${{ env.GPG_KEY }} | ||
git config --global commit.gpgsign true | ||
- name: Clone openmw-deps repository | ||
env: | ||
GIT_LFS_SKIP_SMUDGE: 1 | ||
run: git clone [email protected]:openmw/openmw-deps.git | ||
|
||
- name: Move exported vcpkg packages to openmw-deps repository | ||
run: mv vcpkg-x64-windows-${{ github.sha }}.7z openmw-deps/windows/ | ||
|
||
- name: Generate commit message | ||
shell: bash | ||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
working-directory: ${{ github.workspace }}/openmw-deps | ||
run: | | ||
echo Add windows vcpkg packages built at ${{ github.sha }} > commit_message.txt | ||
echo >> commit_message.txt | ||
printf 'Generated by ' >> commit_message.txt | ||
gh run --repo ${{ github.repository }} view ${{ github.run_id }} --json jobs --jq '.jobs[] | select(.name == "${{ github.job }}") | .url' >> commit_message.txt | ||
echo >> commit_message.txt | ||
- name: Commit exported vcpkg packages | ||
working-directory: ${{ github.workspace }}/openmw-deps | ||
run: | | ||
git checkout -b vcpkg-x64-windows-${{ github.sha }} | ||
git add windows/vcpkg-x64-windows-${{ github.sha }}.7z | ||
git commit -F commit_message.txt | ||
git verify-commit HEAD | ||
- name: Push exported vcpkg packages to gitlab | ||
if: github.ref == 'refs/heads/master' | ||
working-directory: ${{ github.workspace }}/openmw-deps | ||
run: git push origin vcpkg-x64-windows-${{ github.sha }} | ||
|
||
- name: Store exported vcpkg packages | ||
working-directory: ${{ github.workspace }}/openmw-deps | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: vcpkg-x64-windows-${{ github.sha }} | ||
path: windows/vcpkg-x64-windows-${{ github.sha }}.7z |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
gitlab.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAfuCHKVTjquxvt6CM6tdG4SLp1Btn/nOeHHE5UOzRdf | ||
gitlab.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsj2bNKTBSpIYDEGk9KxsGh3mySTRgMtXL583qmBpzeQ+jqCMRgBqB98u3z++J1sKlXHWfM9dyhSevkMwSbhoR8XIq/U0tCNyokEi/ueaBMCvbcTHhO7FcwzY92WK4Yt0aGROY5qX2UKSeOvuP4D6TPqKF1onrSzH9bx9XUf2lEdWT/ia1NEKjunUqu1xOB/StKDHMoX4/OKyIzuS0q/T1zOATthvasJFoPrAjkohTyaDUz2LN5JoH839hViyEG82yB+MjcFV5MU3N1l1QL3cVUCh93xSaua1N85qivl+siMkPGbO5xR/En4iEY6K2XPASUEMaieWVNTRCtJ4S8H+9 | ||
gitlab.com ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFSMqzJeV9rUzU4kWitGjeR4PWSa29SPqJ1fVkhtj3Hw9xjLVXVYrU9QlYWrOLXBpQ6KWjbjTDTdDkoohFzgbEY= |