2023-04-01 05:08:06 -04:00
|
|
|
# SPDX-License-Identifier: MIT
|
2023-03-25 09:44:02 -04:00
|
|
|
name: 'Setup Forgejo'
|
2023-03-25 17:53:12 -04:00
|
|
|
author: 'Forgejo authors'
|
2023-03-29 09:23:09 -04:00
|
|
|
description: |
|
|
|
|
Setup Forgejo and a runner.
|
|
|
|
|
|
|
|
The forgejo-test-helper.sh script is available to help test and debug actions.
|
|
|
|
|
2023-03-29 10:50:46 -04:00
|
|
|
`forgejo=http://root:admin1234@${{ steps.forgejo.outputs.host-port }}`
|
2023-03-29 09:23:09 -04:00
|
|
|
|
2023-03-29 10:50:46 -04:00
|
|
|
* `forgejo-test-helper.sh push_self_action $forgejo root myaction vTest`
|
2023-03-29 09:23:09 -04:00
|
|
|
Creates the repository `$forgejo/root/myaction` and populate it with the
|
|
|
|
content of the repository under test, except for the `.forgejo` directory
|
|
|
|
(it would otherwise create an infinite recursion loop). The tag `vTest` is
|
|
|
|
set to the SHA under test.
|
2023-03-29 10:50:46 -04:00
|
|
|
* `forgejo-test-helper.sh run_workflow testrepo $forgejo root testrepo myaction`
|
2023-03-29 09:23:09 -04:00
|
|
|
Create the repository `$forgejo/root/testrepo` and populate it with the
|
|
|
|
content of the `testrepo` directory. All occurrences of `SELF` in
|
|
|
|
`testrepo/.forgejo/workflows/*.yml` are replaced with `$forgejo/root/myaction`.
|
2023-03-29 10:50:46 -04:00
|
|
|
* `forgejo-test-helper.sh push testrepo $forgejo root testrepo`
|
|
|
|
Create the repository `$forgejo/root/testrepo` and populate it with the
|
2023-03-29 17:33:49 -04:00
|
|
|
content of the `testrepo` directory. The SHA of the tip of the repository
|
|
|
|
is in the output, starting with `sha=`.
|
2023-04-05 10:48:22 -04:00
|
|
|
* `forgejo-test-helper.sh build_runner $forgejo/forgejo/runner v1.4.1`
|
|
|
|
Builds the forgejo runner from source in `./forgejo-runner/forgejo-runner`.
|
|
|
|
`export PATH=$(pwd)/forgejo-runner:$PATH` will ensure that calling `forgejo-runner.sh`
|
|
|
|
will use this binary instead of downloading a released version of the runner.
|
|
|
|
If the version is not specified, build from the main branch.
|
2023-03-29 09:23:09 -04:00
|
|
|
|
2023-03-29 10:50:46 -04:00
|
|
|
The combination of `push_self_action` and `run_workflow` allows to
|
|
|
|
run Forgejo Actions workflows from `testrepo` that use the action
|
|
|
|
under test (`myaction`) to verify it works as intended.
|
2023-03-29 09:23:09 -04:00
|
|
|
|
2023-03-24 10:59:04 -04:00
|
|
|
inputs:
|
2023-03-25 17:53:12 -04:00
|
|
|
image:
|
|
|
|
description: 'Container image'
|
|
|
|
default: 'codeberg.org/forgejo/forgejo'
|
|
|
|
image-version:
|
|
|
|
description: 'Container image version'
|
|
|
|
default: '1.19'
|
2023-03-25 18:15:29 -04:00
|
|
|
user:
|
|
|
|
description: 'Administrator user name'
|
|
|
|
default: 'root'
|
|
|
|
password:
|
|
|
|
description: 'Administrator password'
|
|
|
|
default: 'admin1234'
|
2023-03-25 17:53:12 -04:00
|
|
|
runner:
|
|
|
|
description: 'Runner git repository'
|
2023-03-27 13:39:19 -04:00
|
|
|
default: 'https://code.forgejo.org/forgejo/runner'
|
2023-03-25 17:53:12 -04:00
|
|
|
runner-version:
|
|
|
|
description: 'Runner version'
|
2023-05-22 05:27:50 -04:00
|
|
|
default: 'v2.0.0'
|
2023-04-01 08:51:42 -04:00
|
|
|
container:
|
|
|
|
description: 'Name of the container running the Forgejo instance'
|
|
|
|
default: 'forgejo'
|
2023-03-29 18:27:54 -04:00
|
|
|
lxc-ip-prefix:
|
|
|
|
description: 'Class C IP prefix used by LXC'
|
|
|
|
default: '10.0.23'
|
2023-03-24 10:59:04 -04:00
|
|
|
outputs:
|
2023-03-25 17:53:12 -04:00
|
|
|
url:
|
2023-03-27 11:36:59 -04:00
|
|
|
description: "URL of the Forgejo instance"
|
2023-03-27 10:43:26 -04:00
|
|
|
value: "${{ steps.forgejo.outputs.url }}"
|
|
|
|
host-port:
|
2023-03-27 11:36:59 -04:00
|
|
|
description: "Host and port of the Forgejo instance, e.g 172.0.17.2:3000"
|
2023-03-27 10:43:26 -04:00
|
|
|
value: "${{ steps.forgejo.outputs.host-port }}"
|
2023-03-25 18:15:29 -04:00
|
|
|
token:
|
2023-03-27 11:36:59 -04:00
|
|
|
description: "Administrator application token with all,sudo scopes"
|
2023-03-27 10:43:26 -04:00
|
|
|
value: "${{ steps.forgejo.outputs.token }}"
|
2023-03-27 11:36:59 -04:00
|
|
|
runner-logs:
|
|
|
|
description: "Filename of the Forgejo runner logs"
|
|
|
|
value: "${{ steps.forgejo.outputs.runner-logs }}"
|
|
|
|
|
2023-03-24 10:59:04 -04:00
|
|
|
runs:
|
|
|
|
using: "composite"
|
|
|
|
steps:
|
2023-03-25 14:07:46 -04:00
|
|
|
- run: echo "${{ github.action_path }}" >> $GITHUB_PATH
|
|
|
|
shell: bash
|
2023-05-21 16:30:12 -04:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: 'true'
|
2023-03-25 17:53:12 -04:00
|
|
|
- id: forgejo
|
|
|
|
run: |
|
2023-03-25 18:24:07 -04:00
|
|
|
cd $(mktemp -d)
|
2023-04-01 12:22:40 -04:00
|
|
|
LXC_IP_PREFIX=${{ inputs.lxc-ip-prefix }} forgejo-dependencies.sh
|
2023-04-01 08:51:42 -04:00
|
|
|
export CONTAINER=${{ inputs.container }}
|
2023-04-05 11:40:06 -04:00
|
|
|
forgejo.sh setup ${{ inputs.user }} "${{ inputs.password }}" ${{ inputs.image }} ${{ inputs.image-version }}
|
2023-03-27 13:39:19 -04:00
|
|
|
forgejo-runner.sh setup ${{ inputs.runner }} ${{ inputs.runner-version }} http://$(cat forgejo-ip):3000/
|
2023-03-25 17:53:12 -04:00
|
|
|
echo url="http://$(cat forgejo-ip):3000" >> $GITHUB_OUTPUT
|
2023-03-27 10:43:26 -04:00
|
|
|
echo host-port="$(cat forgejo-ip):3000" >> $GITHUB_OUTPUT
|
2023-03-25 18:15:29 -04:00
|
|
|
echo token=$(cat forgejo-token) >> $GITHUB_OUTPUT
|
2023-03-27 11:36:59 -04:00
|
|
|
echo runner-logs="$(pwd)/forgejo-runner.log" >> $GITHUB_OUTPUT
|
2023-03-24 10:59:04 -04:00
|
|
|
shell: bash
|