forked from NYANDEV/forgejo
1d7d8f4565
(cherry picked from commit c2a7aaeee82293793b2740251dc5fd27dfb32ddb)
(cherry picked from commit 4277bdb7414885ef87a4c72fa73c088caa7cc5f1)
(cherry picked from commit adebc446711af1342671a75570edc69c73a480e9)
(cherry picked from commit 9a7332c2be588884056e34aa301f37967f33c0f2)
(cherry picked from commit cf5e3b046c
)
(cherry picked from commit eec15a625e621e2e884c8740815881a54fae20fb)
34 lines
923 B
YAML
34 lines
923 B
YAML
platform: linux/amd64
|
|
|
|
when:
|
|
event: push
|
|
|
|
variables:
|
|
- &dind_image 'docker:20.10-dind'
|
|
- &alpine_image 'alpine:3.17'
|
|
|
|
pipeline:
|
|
container-images-pull-verify-push:
|
|
image: *dind_image
|
|
group: integration
|
|
commands:
|
|
# arm64 would require qemu-user-static which is not available on alpline
|
|
# the test coverage does not change much and running the tests test locally
|
|
# is possible if there is a doubt
|
|
- ARCHS=amd64 ./releases/container-images-pull-verify-push-test.sh test_run
|
|
- ./releases/container-images-pull-verify-push-test.sh test_teardown
|
|
secrets:
|
|
- releaseteamuser
|
|
- releaseteamtoken
|
|
- domain
|
|
|
|
binaries-pull-push:
|
|
image: *alpine_image
|
|
group: integration
|
|
commands:
|
|
- ./releases/binaries-pull-push-test.sh test_run
|
|
- ./releases/binaries-pull-push-test.sh test_teardown
|
|
secrets:
|
|
- releaseteamuser
|
|
- releaseteamtoken
|
|
- domain
|