From 439f1b3450085df3f1d9b9ddceb8b1e50410c6c0 Mon Sep 17 00:00:00 2001 From: Victor Polevoy Date: Mon, 22 Apr 2024 10:48:13 +0200 Subject: [PATCH] Remove cirrus ci for it being useless for a long time. Removes the corresponding tasks file. For the future of the project it is better to use GitHub actions with ubuntu linux runner and the "vmactions/freebsd-vm@v1", as in here: . --- .cirrus.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .cirrus.yml diff --git a/.cirrus.yml b/.cirrus.yml deleted file mode 100644 index f9d19ed..0000000 --- a/.cirrus.yml +++ /dev/null @@ -1,25 +0,0 @@ -task: - name: nightly x86_64-unknown-freebsd-13 - freebsd_instance: - image_family: freebsd-13-2 - setup_script: - - pkg install -y curl ssl - - curl https://sh.rustup.rs -sSf --output rustup.sh - - sh rustup.sh -y --default-toolchain nightly --profile=minimal - - . $HOME/.cargo/env - test_script: - - . $HOME/.cargo/env - - cargo test --all-features - -task: - name: nightly x86_64-unknown-freebsd-14 - freebsd_instance: - image_family: freebsd-14-0 - setup_script: - - pkg install -y curl ssl - - curl https://sh.rustup.rs -sSf --output rustup.sh - - sh rustup.sh -y --default-toolchain nightly --profile=minimal - - . $HOME/.cargo/env - test_script: - - . $HOME/.cargo/env - - cargo test --all-features