2021-11-02 13:47:36 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: x86_64-linux
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
workspace:
|
|
|
|
path: /workspace
|
|
|
|
|
|
|
|
steps:
|
2022-08-09 00:59:38 +01:00
|
|
|
- name: test_stage3_debug
|
2022-08-20 00:44:24 +01:00
|
|
|
image: ci/debian-amd64:11.1-7
|
2021-11-08 09:08:29 +00:00
|
|
|
commands:
|
2022-08-09 00:59:38 +01:00
|
|
|
- ./ci/zinc/linux_test_stage3_debug.sh
|
|
|
|
|
|
|
|
- name: test_stage3_release
|
2022-08-20 00:44:24 +01:00
|
|
|
image: ci/debian-amd64:11.1-7
|
2022-08-09 00:59:38 +01:00
|
|
|
commands:
|
|
|
|
- ./ci/zinc/linux_test_stage3_release.sh
|
2021-11-08 09:08:29 +00:00
|
|
|
|
|
|
|
- name: package
|
|
|
|
depends_on:
|
2022-08-09 00:59:38 +01:00
|
|
|
- test_stage3_debug
|
|
|
|
- test_stage3_release
|
2021-11-08 09:08:29 +00:00
|
|
|
when:
|
|
|
|
branch:
|
|
|
|
- master
|
|
|
|
event:
|
|
|
|
- push
|
2022-08-20 00:44:24 +01:00
|
|
|
image: ci/debian-amd64:11.1-7
|
2021-11-08 09:08:29 +00:00
|
|
|
environment:
|
|
|
|
AWS_ACCESS_KEY_ID:
|
|
|
|
from_secret: AWS_ACCESS_KEY_ID
|
|
|
|
AWS_SECRET_ACCESS_KEY:
|
|
|
|
from_secret: AWS_SECRET_ACCESS_KEY
|
|
|
|
SRHT_OAUTH_TOKEN:
|
|
|
|
from_secret: SRHT_OAUTH_TOKEN
|
|
|
|
commands:
|
2021-12-07 02:02:47 +00:00
|
|
|
- ./ci/zinc/linux_package.sh
|