All checks were successful
Application acceptance / application-tests (push) Successful in 5s
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / container-smoke (push) Successful in 1s
Build and Publish Container Image / build-and-push (push) Successful in 39s
Application acceptance / application-tests (pull_request) Successful in 54s
Assistant: codex Assistant-Model: gpt-6-astra Assistant-Session: 01a07ff8-19d0-7820-b4d0-1353833cb7fc
25 lines
709 B
YAML
25 lines
709 B
YAML
name: Application acceptance
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
application-tests:
|
|
runs-on: container-build
|
|
env:
|
|
DOCKER_HOST: tcp://127.0.0.1:2375
|
|
steps:
|
|
- name: Test the exact source and built assets
|
|
run: |
|
|
set -eu
|
|
REF="${GITHUB_SHA:?exact source revision required}"
|
|
mkdir -p buildctx
|
|
wget -qO /tmp/repo.tar.gz \
|
|
"https://forgejo.coulomb.social/${GITHUB_REPOSITORY}/archive/${REF}.tar.gz"
|
|
tar xzf /tmp/repo.tar.gz -C buildctx --strip-components=1
|
|
. buildctx/scripts/ci-docker.sh
|
|
docker build --target application-tests buildctx
|