2023-03-24 15:59:04 +01:00
|
|
|
on: [ push ]
|
|
|
|
jobs:
|
|
|
|
integration:
|
|
|
|
runs-on: self-hosted
|
|
|
|
steps:
|
2023-03-24 22:42:52 +01:00
|
|
|
- uses: actions/checkout@v3
|
2023-03-24 15:59:04 +01:00
|
|
|
- run: |
|
|
|
|
set -x
|
2023-03-30 00:27:54 +02:00
|
|
|
LXC_IP_PREFIX=10.0.9 ./dependencies.sh
|
2023-03-24 22:42:52 +01:00
|
|
|
./forgejo.sh setup root admin1234 codeberg.org/forgejo/forgejo:1.19
|
|
|
|
./forgejo-runner.sh setup
|
2023-03-29 15:23:09 +02:00
|
|
|
export FORGEJO_RUNNER_LOGS=forgejo-runner.log
|
2023-03-29 23:33:49 +02:00
|
|
|
./forgejo-test-helper.sh run_workflow testdata/demo http://root:admin1234@$(cat forgejo-ip):3000 root demo setup-forgejo > /tmp/output
|
|
|
|
grep '^sha=' /tmp/output
|
2023-03-29 15:23:09 +02:00
|
|
|
./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
|