mirror of
https://code.forgejo.org/actions/setup-forgejo.git
synced 2024-11-24 03:41:02 -05:00
24 lines
1.3 KiB
YAML
24 lines
1.3 KiB
YAML
on: [ push, pull_request ]
|
|
jobs:
|
|
integration:
|
|
runs-on: self-hosted
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: |
|
|
set -x
|
|
LXC_IP_PREFIX=10.0.9 ./forgejo-dependencies.sh
|
|
./forgejo.sh setup root admin1234 codeberg.org/forgejo/forgejo:1.19
|
|
#
|
|
# Uncomment the following for a shortcut to debugging the Forgejo runner.
|
|
# It will build the runner from a designated repository and branch instead of
|
|
# downloading it from a canonical release.
|
|
#
|
|
# ./forgejo-test-helper.sh build_runner http://code.forgejo.org/forgejo/runner branch-under-debug
|
|
# export PATH=$(pwd)/forgejo-runner:$PATH
|
|
#
|
|
./forgejo-runner.sh setup
|
|
export FORGEJO_RUNNER_LOGS=forgejo-runner.log
|
|
./forgejo-test-helper.sh run_workflow testdata/demo http://root:admin1234@$(cat forgejo-ip):3000 root demo setup-forgejo $(cat forgejo-token) > /tmp/output
|
|
grep '^sha=' /tmp/output
|
|
./forgejo-test-helper.sh push_self_action http://root:admin1234@$(cat forgejo-ip):3000 root setup-forgejo vTest
|
|
./forgejo-test-helper.sh run_workflow testdata/sanity-checks http://root:admin1234@$(cat forgejo-ip):3000 root sanity-check setup-forgejo $(cat forgejo-token)
|