mirror of
https://code.forgejo.org/actions/forgejo-release.git
synced 2024-11-14 21:46:33 +02:00
de47e391d3
Closes #14 Reviewed-on: https://code.forgejo.org/actions/forgejo-release/pulls/15 Reviewed-by: earl-warren <earl-warren@noreply.code.forgejo.org> Co-authored-by: benniekiss <benniekiss@noreply.code.forgejo.org> Co-committed-by: benniekiss <benniekiss@noreply.code.forgejo.org>
44 lines
2.1 KiB
YAML
44 lines
2.1 KiB
YAML
on: [ pull_request, push ]
|
|
jobs:
|
|
integration:
|
|
runs-on: self-hosted
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- id: forgejo
|
|
uses: https://code.forgejo.org/actions/setup-forgejo@v1
|
|
with:
|
|
user: testuser
|
|
password: admin1234
|
|
image-version: 1.20
|
|
|
|
- name: push self
|
|
run: |
|
|
forgejo-test-helper.sh push_self_action http://testuser:admin1234@${{ steps.forgejo.outputs.host-port }} testuser forgejo-release vTest
|
|
|
|
- name: testdata/upload-download
|
|
run: |
|
|
export FORGEJO_RUNNER_LOGS="${{ steps.forgejo.outputs.runner-logs }}"
|
|
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 }}"
|
|
|
|
- name: testdata/upload-download-private
|
|
run: |
|
|
export FORGEJO_RUNNER_LOGS="${{ steps.forgejo.outputs.runner-logs }}"
|
|
curl -X 'POST' 'http://testuser:admin1234@${{ steps.forgejo.outputs.host-port }}/api/v1/user/repos' -H 'accept: application/json' -H 'Content-Type: application/json' -d '{"name": "upload-download-private","private": true}'
|
|
forgejo-test-helper.sh run_workflow testdata/upload-download http://testuser:admin1234@${{ steps.forgejo.outputs.host-port }} testuser upload-download-private forgejo-release "${{ steps.forgejo.outputs.token }}"
|
|
|
|
- name: testdata/nested-upload-download
|
|
run: |
|
|
export FORGEJO_RUNNER_LOGS="${{ steps.forgejo.outputs.runner-logs }}"
|
|
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 }}"
|
|
|
|
- name: test forgejo-release.sh
|
|
run: |
|
|
set -ex
|
|
export FORGEJO="${{ steps.forgejo.outputs.url }}"
|
|
export TOKEN="${{ steps.forgejo.outputs.token }}"
|
|
export VERBOSE=true
|
|
testdata/forgejo-release-test.sh test_run testuser otherrepo
|
|
|
|
- if: failure()
|
|
run: docker logs forgejo
|