setup-forgejo/testdata/lxc-run-forgejo-binary/.forgejo/workflows/test.yml

27 lines
968 B
YAML
Raw Normal View History

2023-04-01 11:08:06 +02:00
# SPDX-License-Identifier: MIT
2023-03-25 16:57:11 +01:00
on: [push]
jobs:
setup-binary:
2023-03-25 16:57:11 +01:00
runs-on: self-hosted
steps:
- run: |
echo +++++++++++++++++++++++++++++++++++++++++++
echo about to actions/checkout@v3 for SELF@vTest
2023-03-25 16:57:11 +01:00
- uses: actions/checkout@v3
2023-03-25 22:53:12 +01:00
- id: forgejo
uses: SELF@vTest
2023-03-25 23:07:01 +01:00
with:
binary: https://codeberg.org/forgejo/forgejo/releases/download/v1.20.6-1/forgejo-1.20.6-1-linux-amd64
2023-03-25 23:07:01 +01:00
- run: |
echo +++++++++++++++++++++++++++++++++++++++++++
echo sanity checking the reset of setup-forgejo
2023-03-25 22:53:12 +01:00
set -ex
2023-03-29 18:46:49 +02:00
test "${{ steps.forgejo.outputs.token }}"
2023-03-30 16:11:04 +02:00
test "FORGEJO_TOKEN" -a "FORGEJO_TOKEN" != F'O'RGEJO_TOKEN
curl ${{ steps.forgejo.outputs.url }}/api/forgejo/v1/version >& version.out
if ! grep --quiet 1.20 version.out ; then
cat version.out
exit 1
fi
test -f ${{ steps.forgejo.outputs.runner-file }}