From 092bc6ce0768ea970a614c970c03a4737e1777de Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Sat, 8 Feb 2025 12:17:22 -0700 Subject: [PATCH] ci: delete cirrus freebsd task It's not working; I suspect a cirrus environmental issue, but have no time or energy to debug, and I want to free up the compute credit and disable this source of noise. --- .cirrus.yml | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index 762651433..2936f1bcc 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -2,31 +2,6 @@ env: CIRRUS_CLONE_SUBMODULES: true CIRRUS_CLONE_DEPTH: 1 -task: - name: freebsd-15 - compute_engine_instance: - image_project: freebsd-org-cloud-dev - image: family/freebsd-15-0-snap - platform: freebsd - cpu: 4 - memory: 8G - disk: 100 # Gb - - stateful: false - only_if: "changesInclude('**.toml', '**.rs', '.gitmodules', '.cirrus.yml', 'get-deps', 'Cargo.lock')" - install_rust_script: - - pkg install -y bash - - curl https://sh.rustup.rs -sSf > /tmp/rustup.sh - - chmod +x /tmp/rustup.sh - - RUSTUP_IO_THREADS=1 /tmp/rustup.sh -y -q - getdeps_script: - - env PATH=$HOME/.cargo/bin:$PATH bash get-deps - - mkdir -p /run/sshd - build_script: - - env PATH=$HOME/.cargo/bin:$PATH cargo build --all --release - test_script: - - env PATH=$HOME/.cargo/bin:$PATH cargo test --all --release - task: name: ubuntu-24.04 only_if: "changesInclude('**.toml', '**.rs', '.gitmodules', '.cirrus.yml', 'get-deps', 'Cargo.lock')"