Rust Init #6

Merged
lukas merged 15 commits from rust-init into main 2023-11-20 16:40:55 +01:00
Showing only changes of commit 83b8a860d9 - Show all commits

View File

@ -1,16 +1,12 @@
kind: pipeline
name: test-on-amd64
environment:
RUST_IMAGE:
from_secret: RUST_IMAGE
platform:
arch: amd64
steps:
- name: test
image: ${RUST_IMAGE}
image: "${RUST_IMAGE}"
commands:
- rustc --version
- cargo --version
@ -23,13 +19,9 @@ name: test-on-arm64
platform:
arch: arm64
environment:
RUST_IMAGE:
from_secret: RUST_IMAGE
steps:
- name: test
image: ${RUST_IMAGE}
image: "${RUST_IMAGE}"
commands:
- rustc --version
- cargo --version