From 1b07fec76f090392c47f9e9337c1a78bd1934399 Mon Sep 17 00:00:00 2001 From: "Aode (lion)" Date: Fri, 3 Dec 2021 16:54:42 -0600 Subject: [PATCH] Update drone triggers --- .drone.yml | 123 +++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 119 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index c8c86f0..3cebc6b 100644 --- a/.drone.yml +++ b/.drone.yml @@ -22,7 +22,12 @@ steps: pull: always commands: - rustup component add clippy - - cargo clippy --no-default-features + - cargo clippy + +trigger: + event: + - push + - pull_request --- @@ -51,6 +56,43 @@ steps: commands: - cargo test +trigger: + event: + - push + - pull_request + +--- + +kind: pipeline +type: docker +name: check-amd64 + +platform: + arch: amd64 + +clone: + disable: true + +steps: +- name: clone + image: alpine/git:latest + user: root + commands: + - git clone $DRONE_GIT_HTTP_URL . + - git checkout $DRONE_COMMIT + - chown -R 991:991 . + +- name: build + image: asonix/rust-builder:amd64-latest + pull: always + commands: + - cargo check --target=x86_64-unknown-linux-musl + +trigger: + event: + - push + - pull_request + --- kind: pipeline @@ -76,9 +118,44 @@ steps: image: asonix/rust-builder:amd64-latest pull: always commands: - - cargo check --target=x86_64-unknown-linux-musl - cargo build --target=x86_64-unknown-linux-musl --release +trigger: + event: + - tag + +--- + +kind: pipeline +type: docker +name: check-arm64v8 + +platform: + arch: amd64 + +clone: + disable: true + +steps: +- name: clone + image: alpine/git:latest + user: root + commands: + - git clone $DRONE_GIT_HTTP_URL . + - git checkout $DRONE_COMMIT + - chown -R 991:991 . + +- name: build + image: asonix/rust-builder:arm64v8-latest + pull: always + commands: + - cargo check --target=aarch64-unknown-linux-musl + +trigger: + event: + - push + - pull_request + --- kind: pipeline @@ -104,9 +181,44 @@ steps: image: asonix/rust-builder:arm64v8-latest pull: always commands: - - cargo check --target=aarch64-unknown-linux-musl - cargo build --target=aarch64-unknown-linux-musl --release +trigger: + event: + - tag + +--- + +kind: pipeline +type: docker +name: check-arm32v7 + +platform: + arch: amd64 + +clone: + disable: true + +steps: +- name: clone + image: alpine/git:latest + user: root + commands: + - git clone $DRONE_GIT_HTTP_URL . + - git checkout $DRONE_COMMIT + - chown -R 991:991 . + +- name: build + image: asonix/rust-builder:arm32v7-latest + pull: always + commands: + - cargo check --target=armv7-unknown-linux-musleabihf + +trigger: + event: + - push + - pull_request + --- kind: pipeline @@ -132,5 +244,8 @@ steps: image: asonix/rust-builder:arm32v7-latest pull: always commands: - - cargo check --target=armv7-unknown-linux-musleabihf - cargo build --target=armv7-unknown-linux-musleabihf --release + +trigger: + event: + - tag