From 29e3584c4d21aeaef6f0f3d29e8d5083761626c1 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Tue, 13 Sep 2022 13:13:27 +0200 Subject: [PATCH] ci: don't auto-cancel CI on old commits on master (#5006) --- .cirrus.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.cirrus.yml b/.cirrus.yml index 1adc492ad..fac5b4a34 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -11,6 +11,7 @@ env: # the system's binaries, so the environment shouldn't matter. task: name: FreeBSD 64-bit + auto_cancellation: $CIRRUS_BRANCH != 'master' && $CIRRUS_BRANCH !=~ 'tokio-.*' setup_script: - pkg install -y bash curl - curl https://sh.rustup.rs -sSf --output rustup.sh @@ -25,6 +26,7 @@ task: task: name: FreeBSD docs + auto_cancellation: $CIRRUS_BRANCH != 'master' && $CIRRUS_BRANCH !=~ 'tokio-.*' env: RUSTFLAGS: --cfg docsrs --cfg tokio_unstable RUSTDOCFLAGS: --cfg docsrs --cfg tokio_unstable -Dwarnings @@ -42,6 +44,7 @@ task: task: name: FreeBSD 32-bit + auto_cancellation: $CIRRUS_BRANCH != 'master' && $CIRRUS_BRANCH !=~ 'tokio-.*' setup_script: - pkg install -y bash curl - curl https://sh.rustup.rs -sSf --output rustup.sh