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