summaryrefslogtreecommitdiffstats
path: root/.cirrus.yml
diff options
context:
space:
mode:
authorClementTsang <34804052+ClementTsang@users.noreply.github.com>2022-10-12 17:54:02 -0400
committerClementTsang <34804052+ClementTsang@users.noreply.github.com>2022-10-12 17:54:02 -0400
commitdf13d12551456610d1036bdb6d02f22a79e9a6b9 (patch)
treef6c9c017477931ad5ff8a7624e21cc2dd7fade2b /.cirrus.yml
parent577165292c7f58d8ca10c56f787180f690136fd0 (diff)
Revert "ci: add basic Cirrus CI testing for FreeBSD + M1 (#826)"
Diffstat (limited to '.cirrus.yml')
-rw-r--r--.cirrus.yml31
1 files changed, 0 insertions, 31 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
deleted file mode 100644
index 02f24957..00000000
--- a/.cirrus.yml
+++ /dev/null
@@ -1,31 +0,0 @@
-task:
- name: FreeBSD 13 Test
- freebsd_instance:
- image_family: freebsd-13-1
- setup_script:
- - pkg install -y curl
- - curl https://sh.rustup.rs -sSf --output rustup.sh
- - sh rustup.sh --default-toolchain stable -y
- - . $HOME/.cargo/env
- test_script:
- - . $HOME/.cargo/env
- - cargo fmt --all -- --check
- - cargo test --no-run --locked
- - cargo test --no-fail-fast -- --nocapture --quiet
- - cargo clippy --all-targets --workspace -- -D warnings
-
-task:
- name: macOS M1 Test
- freebsd_instance:
- image: ghcr.io/cirruslabs/macos-monterey-base:latest
- setup_script:
- - pkg install -y curl
- - curl https://sh.rustup.rs -sSf --output rustup.sh
- - sh rustup.sh --default-toolchain stable -y
- - . $HOME/.cargo/env
- test_script:
- - . $HOME/.cargo/env
- - cargo fmt --all -- --check
- - cargo test --no-run --locked
- - cargo test --no-fail-fast -- --nocapture --quiet
- - cargo clippy --all-targets --workspace -- -D warnings