2023-03-26 18:41:37 +03:00
|
|
|
on: [ push ]
|
|
|
|
jobs:
|
|
|
|
integration:
|
|
|
|
runs-on: self-hosted
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-05-26 15:48:58 +03:00
|
|
|
|
2023-03-26 18:41:37 +03:00
|
|
|
- id: forgejo
|
|
|
|
uses: https://code.forgejo.org/actions/setup-forgejo@v1
|
|
|
|
with:
|
2023-03-27 00:03:56 +03:00
|
|
|
user: testuser
|
2023-03-27 18:17:17 +03:00
|
|
|
password: admin1234
|
2023-09-02 08:42:49 +03:00
|
|
|
image-version: 1.20
|
2023-03-30 18:27:35 +03:00
|
|
|
|
2023-09-02 08:42:49 +03:00
|
|
|
- name: push self
|
2023-03-27 18:17:17 +03:00
|
|
|
run: |
|
2023-03-29 18:16:26 +03:00
|
|
|
forgejo-test-helper.sh push_self_action http://testuser:admin1234@${{ steps.forgejo.outputs.host-port }} testuser forgejo-release vTest
|
2023-03-30 18:27:35 +03:00
|
|
|
|
2023-09-02 08:42:49 +03:00
|
|
|
- name: testdata/upload-download
|
2023-03-30 18:27:35 +03:00
|
|
|
run: |
|
|
|
|
export FORGEJO_RUNNER_LOGS="${{ steps.forgejo.outputs.runner-logs }}"
|
2023-03-30 17:28:59 +03:00
|
|
|
forgejo-test-helper.sh run_workflow testdata/upload-download http://testuser:admin1234@${{ steps.forgejo.outputs.host-port }} testuser upload-download forgejo-release "${{ steps.forgejo.outputs.token }}"
|
2023-03-30 18:27:35 +03:00
|
|
|
|
2023-09-02 08:42:49 +03:00
|
|
|
- name: testdata/nested-upload-download
|
2023-03-30 18:27:35 +03:00
|
|
|
run: |
|
|
|
|
export FORGEJO_RUNNER_LOGS="${{ steps.forgejo.outputs.runner-logs }}"
|
2023-03-30 17:28:59 +03:00
|
|
|
forgejo-test-helper.sh run_workflow testdata/nested-upload-download http://testuser:admin1234@${{ steps.forgejo.outputs.host-port }} testuser nested-upload-download forgejo-release "${{ steps.forgejo.outputs.token }}"
|
2023-03-30 18:27:35 +03:00
|
|
|
|
2023-09-02 08:42:49 +03:00
|
|
|
- name: test forgejo-release.sh
|
2023-03-27 18:17:17 +03:00
|
|
|
run: |
|
2023-03-26 18:41:37 +03:00
|
|
|
set -ex
|
2023-03-27 00:03:56 +03:00
|
|
|
export FORGEJO="${{ steps.forgejo.outputs.url }}"
|
2023-03-30 02:08:18 +03:00
|
|
|
export TOKEN="${{ steps.forgejo.outputs.token }}"
|
|
|
|
export VERBOSE=true
|
|
|
|
testdata/forgejo-release-test.sh test_run testuser otherrepo
|
2023-09-02 11:48:52 +03:00
|
|
|
|
|
|
|
- if: failure()
|
|
|
|
run: docker logs forgejo
|