72 lines
1.1 KiB
YAML
72 lines
1.1 KiB
YAML
kind: pipeline
|
|
name: amd64 [debug]
|
|
|
|
platform:
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: build [debug]
|
|
image: rust:alpine
|
|
commands:
|
|
- rustc --version
|
|
- cargo --version
|
|
- cargo build --verbose --all
|
|
|
|
- name: test [debug]
|
|
image: rust:alpine
|
|
commands:
|
|
- rustc --version
|
|
- cargo --version
|
|
- cargo test --verbose --all
|
|
|
|
---
|
|
kind: pipeline
|
|
name: arm64 [debug]
|
|
|
|
platform:
|
|
arch: arm64
|
|
|
|
steps:
|
|
- name: build [debug]
|
|
image: rust:alpine
|
|
commands:
|
|
- rustc --version
|
|
- cargo --version
|
|
- cargo build --verbose --all
|
|
|
|
- name: test [debug]
|
|
image: rust:alpine
|
|
commands:
|
|
- rustc --version
|
|
- cargo --version
|
|
- cargo test --verbose --all
|
|
|
|
---
|
|
kind: pipeline
|
|
name: amd64 [release]
|
|
|
|
platform:
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: build and test [release]
|
|
image: rust:alpine
|
|
commands:
|
|
- rustc --version
|
|
- cargo --version
|
|
- cargo test --verbose --all --release
|
|
|
|
---
|
|
kind: pipeline
|
|
name: arm64 [release]
|
|
|
|
platform:
|
|
arch: arm64
|
|
|
|
steps:
|
|
- name: build and test [release]
|
|
image: rust:alpine
|
|
commands:
|
|
- rustc --version
|
|
- cargo --version
|
|
- cargo test --verbose --all --release |