mirror of
https://code.forgejo.org/forgejo/runner.git
synced 2024-11-21 20:27:17 +03:00
d4eb913533
Refs: https://github.com/nektos/act/issues/1908 Bump Docker dependency See https://code.forgejo.org/forgejo/act/pulls/9 for more info. Use forked act change branch Bump version Use forgejo fork v1.9.0 Revert #50 Now that https://code.forgejo.org/forgejo/runner/pulls/64 has been merged we should be good to go. Remove pinned go version in test workflow Bump Go version to 1.21
54 lines
1.8 KiB
YAML
54 lines
1.8 KiB
YAML
name: checks
|
|
on:
|
|
- pull_request
|
|
- push
|
|
|
|
env:
|
|
FORGEJO_HOST_PORT: 'forgejo:3000'
|
|
FORGEJO_ADMIN_USER: 'root'
|
|
FORGEJO_ADMIN_PASSWORD: 'admin1234'
|
|
FORGEJO_RUNNER_SECRET: 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'
|
|
FORGEJO_SCRIPT: |
|
|
/bin/s6-svscan /etc/s6 & sleep 10 ; su -c "forgejo admin user create --admin --username $FORGEJO_ADMIN_USER --password $FORGEJO_ADMIN_PASSWORD --email root@example.com" git && su -c "forgejo forgejo-cli actions register --labels docker --name therunner --secret $FORGEJO_RUNNER_SECRET" git && sleep infinity
|
|
GOPROXY: https://goproxy.io,direct
|
|
|
|
jobs:
|
|
tests:
|
|
name: check and test
|
|
if: github.repository_owner != 'forgejo-integration' && github.repository_owner != 'forgejo-experimental' && github.repository_owner != 'forgejo-release'
|
|
runs-on: docker
|
|
|
|
services:
|
|
forgejo:
|
|
image: codeberg.org/forgejo-integration/forgejo:1.20.0-4-rc2
|
|
env:
|
|
FORGEJO__security__INSTALL_LOCK: "true"
|
|
FORGEJO__log__LEVEL: "debug"
|
|
FORGEJO__actions__ENABLED: "true"
|
|
FORGEJO_ADMIN_USER: ${{ env.FORGEJO_ADMIN_USER }}
|
|
FORGEJO_ADMIN_PASSWORD: ${{ env.FORGEJO_ADMIN_PASSWORD }}
|
|
FORGEJO_RUNNER_SECRET: ${{ env.FORGEJO_RUNNER_SECRET }}
|
|
cmd:
|
|
- 'bash'
|
|
- '-c'
|
|
- ${{ env.FORGEJO_SCRIPT }}
|
|
|
|
steps:
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '1.21'
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- run: make vet
|
|
|
|
- run: make build
|
|
|
|
- name: check the forgejo server is responding
|
|
run: |
|
|
set -x
|
|
apt-get update -qq
|
|
apt-get install -y -qq jq curl
|
|
test $FORGEJO_ADMIN_USER = $(curl -sS http://$FORGEJO_ADMIN_USER:$FORGEJO_ADMIN_PASSWORD@$FORGEJO_HOST_PORT/api/v1/user | jq --raw-output .login)
|
|
|
|
- run: make FORGEJO_URL=http://$FORGEJO_HOST_PORT test
|