2023-04-01 08:52:42 -04:00
|
|
|
on: [ push, pull_request ]
|
2023-07-08 08:06:13 -04:00
|
|
|
|
|
|
|
env:
|
|
|
|
#
|
|
|
|
# List of tests to run as found in testdata/example-$test. The
|
|
|
|
# directory will be used to create a git repository, uploaded to a
|
|
|
|
# Forgejo instance. The test will be a success once the status of
|
|
|
|
# the commit is success, as set by the Forgejo Action run.
|
|
|
|
#
|
2023-07-12 06:52:29 -04:00
|
|
|
TESTS: 'echo service container expression local-action docker-action'
|
2023-07-08 08:06:13 -04:00
|
|
|
|
2023-03-24 10:59:04 -04:00
|
|
|
jobs:
|
|
|
|
integration:
|
|
|
|
runs-on: self-hosted
|
|
|
|
steps:
|
2023-03-24 17:42:52 -04:00
|
|
|
- uses: actions/checkout@v3
|
2023-03-24 10:59:04 -04:00
|
|
|
- run: |
|
|
|
|
set -x
|
2023-05-29 11:12:23 -04:00
|
|
|
LXC_IP_PREFIX=10.0.10 ./forgejo-dependencies.sh
|
2023-07-27 14:45:06 -04:00
|
|
|
./forgejo.sh setup root admin1234 codeberg.org/forgejo/forgejo 1.20
|
2023-07-12 06:52:29 -04:00
|
|
|
#
|
|
|
|
# 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/earl-warren/runner wip-sync
|
|
|
|
#export PATH=$(pwd)/forgejo-runner:$PATH
|
|
|
|
#
|
2023-03-24 17:42:52 -04:00
|
|
|
./forgejo-runner.sh setup
|
2023-03-29 09:23:09 -04:00
|
|
|
export FORGEJO_RUNNER_LOGS=forgejo-runner.log
|
2023-07-08 08:06:13 -04:00
|
|
|
for example in $TESTS ; do
|
2023-07-08 09:18:26 -04:00
|
|
|
|
|
|
|
if test $example = service ; then
|
|
|
|
> /srv/example-service-volume-valid
|
|
|
|
> /srv/example-service-volume-invalid
|
|
|
|
fi
|
|
|
|
|
2023-07-08 08:06:13 -04:00
|
|
|
config=$(pwd)/testdata/example-$example/runner-config.yaml
|
|
|
|
if test -f $config ; then
|
|
|
|
FORGEJO_RUNNER_CONFIG=$config ./forgejo-runner.sh reload
|
|
|
|
fi
|
2023-07-08 09:18:26 -04:00
|
|
|
|
2023-07-08 08:06:13 -04:00
|
|
|
echo "============================ BEGIN example-$example ==================="
|
2023-05-29 09:26:29 -04:00
|
|
|
./forgejo-test-helper.sh run_workflow testdata/example-$example http://root:admin1234@$(cat forgejo-ip):3000 root example-$example setup-forgejo $(cat forgejo-token)
|
2023-07-08 08:06:13 -04:00
|
|
|
echo "============================ END example-$example ==================="
|
2023-07-08 09:18:26 -04:00
|
|
|
|
2023-07-08 08:06:13 -04:00
|
|
|
if test -f $config ; then
|
|
|
|
./forgejo-runner.sh reload
|
|
|
|
fi
|
2023-05-29 09:26:29 -04:00
|
|
|
done
|
|
|
|
echo "============================ demo ==================="
|
2023-03-30 10:11:04 -04:00
|
|
|
./forgejo-test-helper.sh run_workflow testdata/demo http://root:admin1234@$(cat forgejo-ip):3000 root demo setup-forgejo $(cat forgejo-token) > /tmp/output
|
2023-03-29 17:33:49 -04:00
|
|
|
grep '^sha=' /tmp/output
|