ccc #14
32
.drone.yml
32
.drone.yml
@ -4,26 +4,23 @@ name: amd64 [debug]
|
|||||||
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}
|
image: rust:alpine
|
||||||
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}
|
image: rust:alpine
|
||||||
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}
|
image: rust:alpine
|
||||||
commands:
|
commands:
|
||||||
- rustc --version
|
- rustc --version
|
||||||
- cargo --version
|
- cargo --version
|
||||||
@ -31,7 +28,7 @@ steps:
|
|||||||
- cargo clippy --verbose --all
|
- cargo clippy --verbose --all
|
||||||
|
|
||||||
- name: format [debug]
|
- name: format [debug]
|
||||||
image: ${RUST_IMAGE}
|
image: rust:alpine
|
||||||
commands:
|
commands:
|
||||||
- rustc --version
|
- rustc --version
|
||||||
- cargo --version
|
- cargo --version
|
||||||
@ -45,26 +42,23 @@ name: arm64 [debug]
|
|||||||
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}
|
image: arm64v8/rust:alpine
|
||||||
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}
|
image: arm64v8/rust:alpine
|
||||||
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}
|
image: arm64v8/rust:alpine
|
||||||
commands:
|
commands:
|
||||||
- rustc --version
|
- rustc --version
|
||||||
- cargo --version
|
- cargo --version
|
||||||
@ -72,7 +66,7 @@ steps:
|
|||||||
- cargo clippy --verbose --all
|
- cargo clippy --verbose --all
|
||||||
|
|
||||||
- name: format [debug]
|
- name: format [debug]
|
||||||
image: ${RUST_IMAGE}
|
image: arm64v8/rust:alpine
|
||||||
commands:
|
commands:
|
||||||
- rustc --version
|
- rustc --version
|
||||||
- cargo --version
|
- cargo --version
|
||||||
@ -86,12 +80,9 @@ name: amd64 [release]
|
|||||||
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}
|
image: rust:alpine
|
||||||
commands:
|
commands:
|
||||||
- rustc --version
|
- rustc --version
|
||||||
- cargo --version
|
- cargo --version
|
||||||
@ -104,12 +95,9 @@ name: arm64 [release]
|
|||||||
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}
|
image: arm64v8/rust:alpine
|
||||||
commands:
|
commands:
|
||||||
- rustc --version
|
- rustc --version
|
||||||
- cargo --version
|
- cargo --version
|
||||||
|
Reference in New Issue
Block a user