diff --git a/.github/workflows/openbsd.yml b/.github/workflows/openbsd.yml index 38a5a729b9e..1004bd478b3 100644 --- a/.github/workflows/openbsd.yml +++ b/.github/workflows/openbsd.yml @@ -134,6 +134,12 @@ jobs: - uses: actions/checkout@v6 with: persist-credentials: false + - name: Avoid no space left on device # shared with guest? + shell: bash + run: | + mkdir /tmp/empty + sudo rsync -a --delete /tmp/empty/ /usr/share/dotnet/ & + sudo rsync -a --delete /tmp/empty/ /usr/local/lib/android & - name: Prepare, build and test uses: vmactions/openbsd-vm@v1 with: @@ -203,7 +209,7 @@ jobs: export RUST_BACKTRACE=1 export CARGO_TERM_COLOR=always # Avoid filling disk space - export RUSTFLAGS="-C strip=symbols" + export RUSTFLAGS="-C strip=symbols -C debuginfo=0" # Use cargo test since nextest might not support OpenBSD if (test -z "\$FAULT"); then echo "::group::cargo test (workspace)" diff --git a/.vscode/cspell.dictionaries/workspace.wordlist.txt b/.vscode/cspell.dictionaries/workspace.wordlist.txt index 2cdd3033a8d..68d5d84a825 100644 --- a/.vscode/cspell.dictionaries/workspace.wordlist.txt +++ b/.vscode/cspell.dictionaries/workspace.wordlist.txt @@ -1,5 +1,6 @@ # * cargo cdylib +debuginfo doctest # * crates diff --git a/docs/src/packaging.md b/docs/src/packaging.md index 2ea1696687c..11aedc7c411 100644 --- a/docs/src/packaging.md +++ b/docs/src/packaging.md @@ -1,6 +1,6 @@ # Packaging coreutils - + > **Note**: This page is intended as a guide for packaging the uutils coreutils > for package maintainers. Normal users probably do not need to read this. If you diff --git a/util/size-experiment.py b/util/size-experiment.py index d383c906e16..0917e2aa5ad 100755 --- a/util/size-experiment.py +++ b/util/size-experiment.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# spell-checker:ignore debuginfo + import subprocess from itertools import product import shutil