mirror of
https://code.forgejo.org/actions/setup-forgejo.git
synced 2024-11-24 03:30:57 -05:00
24 lines
1.2 KiB
YAML
24 lines
1.2 KiB
YAML
on: [ push, pull_request ]
|
|
jobs:
|
|
integration-nested:
|
|
runs-on: self-hosted
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: |
|
|
set -x
|
|
LXC_IP_PREFIX=10.0.9 ./forgejo-dependencies.sh
|
|
export PATH=$(pwd):$PATH
|
|
forgejo.sh setup root admin1234 codeberg.org/forgejo/forgejo 1.20
|
|
#
|
|
# 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
|
|
echo "============================ sanity-check ==================="
|
|
./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)
|