From 0357fa1d50feaf95c627776b776c4ec8d257a17a Mon Sep 17 00:00:00 2001 From: oech3 <79379754+oech3@users.noreply.github.com> Date: Mon, 29 Dec 2025 18:56:36 +0900 Subject: [PATCH] openbsd.yml: Save disk space --- .github/workflows/openbsd.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/openbsd.yml b/.github/workflows/openbsd.yml index f7bae27efc4..fd0449c7d5c 100644 --- a/.github/workflows/openbsd.yml +++ b/.github/workflows/openbsd.yml @@ -184,6 +184,8 @@ jobs: export PATH=~/.cargo/bin:${PATH} export RUST_BACKTRACE=1 export CARGO_TERM_COLOR=always + # Avoid filling disk space + export RUSTFLAGS="-C strip=symbols -C panic=abort" # Use cargo test since nextest might not support OpenBSD if (test -z "\$FAULT"); then cargo test --features '${{ matrix.job.features }}' || FAULT=1 ; fi # There is no systemd-logind on OpenBSD, so test all features except feat_systemd_logind