ccc #14

Merged
leon merged 18 commits from ccc into main 2024-02-09 21:26:46 +01:00
Showing only changes of commit 7e6a8e07af - Show all commits

View File

@ -1,29 +1,24 @@
kind: pipeline
name: amd64 [debug]
image: rust:1.71.1-slim-bookworm
platform:
arch: amd64
environment:
RUST_IMAGE: rust:1.71.1-slim-bookworm
steps:
- name: build [debug]
image: ${RUST_IMAGE}
commands:
- rustc --version
- cargo --version
- cargo build --verbose --all
- name: test [debug]
image: ${RUST_IMAGE}
commands:
- rustc --version
- cargo --version
- cargo test --verbose --all
- name: lint-clippy [debug]
image: ${RUST_IMAGE}
commands:
- rustc --version
- cargo --version
@ -31,7 +26,6 @@ steps:
- cargo clippy --verbose --all
- name: format [debug]
image: ${RUST_IMAGE}
commands:
- rustc --version
- cargo --version
@ -41,30 +35,25 @@ steps:
---
kind: pipeline
name: arm64 [debug]
image: rust:1.71.1-slim-bookworm
platform:
arch: arm64
environment:
RUST_IMAGE: rust:1.71.1-slim-bookworm
steps:
- name: build [debug]
image: ${RUST_IMAGE}
commands:
- rustc --version
- cargo --version
- cargo build --verbose --all
- name: test [debug]
image: ${RUST_IMAGE}
commands:
- rustc --version
- cargo --version
- cargo test --verbose --all
- name: lint-clippy [debug]
image: ${RUST_IMAGE}
commands:
- rustc --version
- cargo --version
@ -72,7 +61,6 @@ steps:
- cargo clippy --verbose --all
- name: format [debug]
image: ${RUST_IMAGE}
commands:
- rustc --version
- cargo --version
@ -82,16 +70,13 @@ steps:
---
kind: pipeline
name: amd64 [release]
image: rust:1.71.1-slim-bookworm
platform:
arch: amd64
environment:
RUST_IMAGE: rust:1.71.1-slim-bookworm
steps:
- name: build and test [release]
image: ${RUST_IMAGE}
commands:
- rustc --version
- cargo --version
@ -100,16 +85,13 @@ steps:
---
kind: pipeline
name: arm64 [release]
image: rust:1.71.1-slim-bookworm
platform:
arch: arm64
environment:
RUST_IMAGE: rust:1.71.1-slim-bookworm
steps:
- name: build and test [release]
image: ${RUST_IMAGE}
commands:
- rustc --version
- cargo --version