2019-10-24 19:09:09 +01:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-10-25 00:04:48 +01:00
|
|
|
name: test-aarch64-linux-musl
|
2019-10-24 19:09:09 +01:00
|
|
|
|
|
|
|
platform:
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
steps:
|
2021-04-24 21:39:26 +01:00
|
|
|
- name: build
|
2021-10-02 00:03:37 +01:00
|
|
|
image: ziglang/static-base:llvm13-aarch64-1
|
2021-04-24 21:39:26 +01:00
|
|
|
commands:
|
|
|
|
- ./ci/drone/linux_script_build
|
|
|
|
|
|
|
|
- name: test-1
|
|
|
|
depends_on:
|
|
|
|
- build
|
2021-10-02 00:03:37 +01:00
|
|
|
image: ziglang/static-base:llvm13-aarch64-1
|
2021-04-24 21:39:26 +01:00
|
|
|
commands:
|
|
|
|
- ./ci/drone/linux_script_test 1
|
|
|
|
|
|
|
|
- name: test-2
|
|
|
|
depends_on:
|
|
|
|
- build
|
2021-10-02 00:03:37 +01:00
|
|
|
image: ziglang/static-base:llvm13-aarch64-1
|
2021-04-24 21:39:26 +01:00
|
|
|
commands:
|
|
|
|
- ./ci/drone/linux_script_test 2
|
|
|
|
|
|
|
|
- name: test-3
|
|
|
|
depends_on:
|
|
|
|
- build
|
2021-10-02 00:03:37 +01:00
|
|
|
image: ziglang/static-base:llvm13-aarch64-1
|
2021-04-24 21:39:26 +01:00
|
|
|
commands:
|
|
|
|
- ./ci/drone/linux_script_test 3
|
|
|
|
|
2021-10-04 19:03:49 +01:00
|
|
|
- name: test-4
|
|
|
|
depends_on:
|
|
|
|
- build
|
|
|
|
image: ziglang/static-base:llvm13-aarch64-1
|
|
|
|
commands:
|
|
|
|
- ./ci/drone/linux_script_test 4
|
|
|
|
|
|
|
|
- name: test-5
|
|
|
|
depends_on:
|
|
|
|
- build
|
|
|
|
image: ziglang/static-base:llvm13-aarch64-1
|
|
|
|
commands:
|
|
|
|
- ./ci/drone/linux_script_test 5
|
|
|
|
|
|
|
|
- name: test-6
|
|
|
|
depends_on:
|
|
|
|
- build
|
|
|
|
image: ziglang/static-base:llvm13-aarch64-1
|
|
|
|
commands:
|
|
|
|
- ./ci/drone/linux_script_test 6
|
|
|
|
|
|
|
|
- name: test-7
|
|
|
|
depends_on:
|
|
|
|
- build
|
|
|
|
image: ziglang/static-base:llvm13-aarch64-1
|
|
|
|
commands:
|
|
|
|
- ./ci/drone/linux_script_test 7
|
|
|
|
|
2021-04-24 21:39:26 +01:00
|
|
|
- name: finalize
|
|
|
|
depends_on:
|
|
|
|
- build
|
|
|
|
- test-1
|
|
|
|
- test-2
|
|
|
|
- test-3
|
2021-10-04 19:03:49 +01:00
|
|
|
- test-4
|
|
|
|
- test-5
|
|
|
|
- test-6
|
|
|
|
- test-7
|
2021-10-02 00:03:37 +01:00
|
|
|
image: ziglang/static-base:llvm13-aarch64-1
|
2019-10-25 00:21:03 +01:00
|
|
|
environment:
|
2019-11-08 00:00:52 +00:00
|
|
|
SRHT_OAUTH_TOKEN:
|
|
|
|
from_secret: SRHT_OAUTH_TOKEN
|
2019-10-25 00:21:03 +01:00
|
|
|
AWS_ACCESS_KEY_ID:
|
|
|
|
from_secret: AWS_ACCESS_KEY_ID
|
|
|
|
AWS_SECRET_ACCESS_KEY:
|
|
|
|
from_secret: AWS_SECRET_ACCESS_KEY
|
2019-10-24 19:09:09 +01:00
|
|
|
commands:
|
2021-04-24 21:39:26 +01:00
|
|
|
- ./ci/drone/linux_script_finalize
|