a5ec8db5f7
build / build (push) Failing after 5s
dependency (SDL2, SDL2_mixer, fluidsynth-lite, a MIDI soundfont) prebuilt, so compiling the engine needs no network access - just the image and the engine source. Add res/assets/extract_assets.sh to pull the game's data files out of a purchased GOG installer, and a Makefile that assembles a runnable dist/ from the two. Also add `make package`, which builds a redistributable tarball that omits the proprietary game assets (shipping res/GET_ASSETS.txt instead) plus license information for both the MIT tooling and the GPLv3 engine, and a Gitea Actions workflow that builds and publishes it to dl.ladkau.de on every push.
77 lines
3.0 KiB
YAML
77 lines
3.0 KiB
YAML
name: build
|
|
|
|
# Builds a versioned Linux release tarball (see `make package`) on every
|
|
# push/PR, plus on-demand via the Gitea "Run workflow" button. Runs
|
|
# inside the build-image (see ../../build-image/Dockerfile, built/pushed
|
|
# via ../../build-image.sh and ../../upload-image.sh), which bundles
|
|
# every dependency engine/ needs to compile - no network access needed
|
|
# at job runtime. Since the job's container already *is* the build-image
|
|
# (QUESTSHOCK_BUILD_IMAGE=1), `make package`'s `engine` prerequisite
|
|
# compiles directly instead of trying to docker-run it again, which
|
|
# wouldn't work here (no nested docker).
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
# Runner defaults `run:` steps to `sh`, which doesn't understand
|
|
# `set -o pipefail` used below - force bash explicitly.
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
# Must match a label your act_runner is registered with.
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
image: cr.ladkau.de/questshock/builder:latest
|
|
credentials:
|
|
username: ${{ secrets.REGISTRY_USER }}
|
|
password: ${{ secrets.REGISTRY_PASSWORD }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
# `make package`'s version comes from `git describe --tags` -
|
|
# needs full history/tags, not actions/checkout's default
|
|
# shallow single-commit clone.
|
|
fetch-depth: 0
|
|
|
|
- name: Preflight
|
|
run: |
|
|
set -euo pipefail
|
|
command -v cc >/dev/null 2>&1 || { echo "PREFLIGHT FAIL: no C compiler (cc) in PATH" >&2; exit 1; }
|
|
command -v cmake >/dev/null 2>&1 || { echo "PREFLIGHT FAIL: cmake not in PATH" >&2; exit 1; }
|
|
[ -n "${QUESTSHOCK_BUILD_IMAGE:-}" ] || { echo "PREFLIGHT FAIL: QUESTSHOCK_BUILD_IMAGE not set - not running inside the questshock build-image?" >&2; exit 1; }
|
|
[ -d /opt/prebuilt/built_sdl ] || { echo "PREFLIGHT FAIL: /opt/prebuilt/built_sdl missing" >&2; exit 1; }
|
|
|
|
- name: Build package
|
|
run: make package
|
|
|
|
- name: Upload build artifact
|
|
# v4 uses the newer @actions/artifact backend, which this Gitea
|
|
# instance's artifact storage doesn't support (GHESNotSupportedError) - v3 works.
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: questshock
|
|
path: dist/questshock-*-linux-*.tar.gz
|
|
|
|
- name: Publish to dl.ladkau.de
|
|
# Uploads the tarball over SFTP instead of using
|
|
# actions/upload-artifact (whose zip wrapping can't be disabled).
|
|
# Only runs on push so PR builds don't publish.
|
|
if: gitea.event_name == 'push'
|
|
run: |
|
|
set -euo pipefail
|
|
TARBALL="$(ls dist/questshock-*-linux-*.tar.gz)"
|
|
mkdir -p ~/.ssh
|
|
echo "${{ secrets.DL_SFTP_KEY }}" > ~/.ssh/dl_sftp_key
|
|
chmod 600 ~/.ssh/dl_sftp_key
|
|
sftp -i ~/.ssh/dl_sftp_key -P 2223 \
|
|
-o StrictHostKeyChecking=accept-new \
|
|
uploader@dl.ladkau.de <<EOF
|
|
-mkdir files/questshock
|
|
put $TARBALL files/questshock/$(basename "$TARBALL")
|
|
EOF
|