mirror of
https://github.com/borgbackup/borg.git
synced 2026-06-11 01:41:57 -04:00
CI: redirect TMPDIR off tmpfs /tmp on omniOS
On omniOS /tmp is swap-backed tmpfs (small, RAM-bound), so the pip/cargo
build temps and the pytest temp tree quickly exhaust it ("no space left on
device"). Point TMPDIR at disk-backed /var/tmp instead, mirroring what the
NetBSD job already does.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
parent
9b8fc60430
commit
f0f40eb936
1 changed files with 6 additions and 0 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
|
@ -540,6 +540,12 @@ jobs:
|
|||
sudo python3 -m ensurepip
|
||||
sudo python3 -m pip install virtualenv
|
||||
|
||||
# On omniOS /tmp is swap-backed tmpfs (small, RAM-bound), so the pip/cargo
|
||||
# build temps and the pytest temp tree quickly exhaust it ("no space left on
|
||||
# device"). /var/tmp is disk-backed (ZFS), so redirect TMPDIR there.
|
||||
export TMPDIR=/var/tmp/borg-ci
|
||||
mkdir -p "$TMPDIR"
|
||||
|
||||
python3 -m venv .venv
|
||||
. .venv/bin/activate
|
||||
python -V
|
||||
|
|
|
|||
Loading…
Reference in a new issue