ccc #14
26
.drone.yml
26
.drone.yml
@ -1,29 +1,24 @@
|
|||||||
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
|
||||||
@ -31,7 +26,6 @@ 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
|
||||||
@ -41,30 +35,25 @@ 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
|
||||||
@ -72,7 +61,6 @@ 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
|
||||||
@ -82,16 +70,13 @@ 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
|
||||||
@ -100,16 +85,13 @@ 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