pull always
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Aode (lion) 2021-12-03 15:38:28 -06:00
parent 43a770061c
commit 2a7af2763b

View file

@ -19,6 +19,7 @@ steps:
- name: clippy
image: asonix/rust-builder:amd64-latest
pull: always
commands:
- rustup component add clippy
- cargo clippy --no-default-features --features with-actix-web,with-awc,with-reqwest,with-rustcrypto,utils
@ -80,6 +81,7 @@ steps:
- name: tests
image: asonix/rust-builder:amd64-latest
pull: always
commands:
- cargo test -p apub-breaker-session
- cargo test -p apub-core
@ -112,6 +114,7 @@ steps:
- name: check-amd64
image: asonix/rust-builder:amd64-latest
pull: always
commands:
- cargo check --target=x86_64-unknown-linux-musl --no-default-features --features with-actix-web,with-awc,with-reqwest,with-rustcrypto,utils
- cargo check -p actix-web-example
@ -120,6 +123,7 @@ steps:
- name: build-amd64
image: asonix/rust-builder:amd64-latest
pull: always
commands:
- cargo build --target=x86_64-unknown-linux-musl --no-default-features --features with-actix-web,with-awc,with-reqwest,with-rustcrypto,utils --release
- cargo build -p actix-web-example --release
@ -149,6 +153,7 @@ steps:
- name: check-arm64v8
image: asonix/rust-builder:arm64v8-latest
pull: always
commands:
- cargo check --target=aarch64-unknown-linux-musl --no-default-features --features with-actix-web,with-awc,with-reqwest,with-rustcrypto,utils
- cargo check -p actix-web-example
@ -157,6 +162,7 @@ steps:
- name: build-arm64v8
image: asonix/rust-builder:arm64v8-latest
pull: always
commands:
- cargo build --target=aarch64-unknown-linux-musl --no-default-features --features with-actix-web,with-awc,with-reqwest,with-rustcrypto,utils --release
- cargo build -p actix-web-example --release
@ -186,6 +192,7 @@ steps:
- name: check-arm32v7
image: asonix/rust-builder:arm32v7-latest
pull: always
commands:
- cargo check --target=armv7-unknown-linux-musleabihf --no-default-features --features with-actix-web,with-awc,with-reqwest,with-rustcrypto,utils
- cargo check -p actix-web-example
@ -194,6 +201,7 @@ steps:
- name: build-arm32v7
image: asonix/rust-builder:arm32v7-latest
pull: always
commands:
- cargo build --target=armv7-unknown-linux-musleabihf --no-default-features --features with-actix-web,with-awc,with-reqwest,with-rustcrypto,utils --release
- cargo build -p actix-web-example --release