mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 06:48:56 +00:00
61bcece963
(cherry picked from commitc2a7aaeee8
) (cherry picked from commit4277bdb741
) (cherry picked from commitadebc44671
) (cherry picked from commit9a7332c2be
) (cherry picked from commitcf5e3b046c
) (cherry picked from commiteec15a625e
) (cherry picked from commit1d7d8f4565
) (cherry picked from commita6e1410f26
)
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
|