Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/openbsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,9 @@ jobs:
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Avoid no space left on device # Ubuntu runner, needed to extend VM image?
shell: bash
run: sudo rm -rf /usr/share/dotnet /usr/local/lib/android &
- name: Prepare, build and test
uses: vmactions/openbsd-vm@v1
with:
Expand Down Expand Up @@ -203,13 +206,15 @@ 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)"
cargo test --features '${{ matrix.job.features }}' || FAULT=1
echo "::endgroup::"
fi
# workaround for disk space (with performance drop)
cargo clean
# There is no systemd-logind on OpenBSD, so test all features except feat_systemd_logind
if (test -z "\$FAULT"); then
echo "::group::cargo test (uucore)"
Expand Down
1 change: 1 addition & 0 deletions .vscode/cspell.dictionaries/workspace.wordlist.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# * cargo
cdylib
debuginfo
doctest

# * crates
Expand Down
2 changes: 1 addition & 1 deletion docs/src/packaging.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Packaging coreutils

<!-- spell-checker:ignore debuginfo manpages backtraces -->
<!-- spell-checker:ignore manpages backtraces -->

> **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
Expand Down
2 changes: 1 addition & 1 deletion util/size-experiment.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
# spell-checker:ignore debuginfo

import subprocess
from itertools import product
import shutil
Expand Down
Loading