build #408
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: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup_alpine | |
uses: jirutka/setup-alpine@v1 | |
with: | |
branch: edge | |
- name: add_packages | |
run: | | |
rm /var/cache/apk/* | |
apk add 7zip autoconf automake bash clang lld llvm llvm-linker-tools gcc g++ cmake coreutils diffutils gawk gettext-dev git libtool make meson musl-dev nasm patch pkgconf po4a py3-mako samurai texinfo util-linux-misc yasm | |
shell: alpine.sh --root {0} | |
- name: setup_git | |
run: | | |
git config --global user.name "github-actions[bot]" | |
git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
shell: alpine.sh --root {0} | |
- name: load_cache | |
uses: actions/cache/restore@main | |
with: | |
path: build | |
key: cached_build | |
- name: setup_cmake | |
run: | | |
cmake -Bbuild -G Ninja | |
shell: alpine.sh {0} | |
- name: run_clean_dist | |
run: | | |
bash -c "rm -rf build/packages/{quake*,ffmpeg*,mpv*}" | |
shell: alpine.sh {0} | |
- name: run_update | |
run: | | |
ninja -C build update | |
shell: alpine.sh {0} | |
- name: run_build | |
run: | | |
ninja -C build llvm | |
ninja -C build quake2pro | |
ninja -C build quake3e | |
ninja -C build quake3e-openarena | |
ninja -C build quake3e-urbanterror | |
ninja -C build ffmpeg | |
ninja -C build mpv | |
shell: alpine.sh {0} | |
- name: clear_cache | |
uses: easimon/wipe-cache@main | |
- name: save_cache | |
uses: actions/cache/save@main | |
with: | |
path: build | |
key: cached_build | |
- name: run_pkg | |
run: | | |
sh run.sh package | |
sh run.sh archive | |
shell: alpine.sh {0} | |
- name: gather_logs | |
if: always() | |
run: | | |
mkdir -p logs | |
cp -fr $(find build -type f -iname "*-out.log") logs/ || true | |
cp -fr $(find build -type f -iname "*-err.log") logs/ || true | |
shell: alpine.sh {0} | |
- name: upload_logs | |
uses: actions/upload-artifact@master | |
if: always() | |
with: | |
name: build-logs | |
path: logs/ | |
- name: upload_pkg_artifacts | |
uses: actions/upload-artifact@master | |
with: | |
name: pkg-artifacts | |
path: bin/*-package | |
- name: create_release_tag | |
uses: shxrklol/action-auto-releases-n20@v1.1 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
automatic_release_tag: "latest" | |
prerelease: false | |
title: Latest Build | |
- name: upload_packages | |
uses: svenstaro/upload-release-action@2.9.0 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: bin/*.7z | |
tag: latest | |
overwrite: true | |
file_glob: true |