Skip to content

Commit bd0b9aa

Browse files
committed
scripts/ci.sh: don't build vmware-workstation
- Doesn't build on GitHub Actions due to bwrap issues. - See https://github.com/chuahou/conf.nix/actions/runs/13624483475/job/38079267712.
1 parent a38bb6e commit bd0b9aa

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

scripts/ci.sh

+5-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,11 @@ drvs=$(for host in $hosts; do
4040
gen_home_drvs $host
4141
echo -n ' '
4242
done)
43-
drvs=$(echo $drvs | xargs -n1 | sort -u | xargs)
43+
#drvs=$(echo $drvs | xargs -n1 | sort -u | xargs)
44+
45+
# Remove vmware-workstation as it doesn't build on GitHub Actions thanks to
46+
# bwrap issues.
47+
drvs=$(echo $drvs | xargs -n1 | grep -v vmware-workstation | sort -u | xargs)
4448

4549
# Filter derivations by whether they exist on cache.
4650
>&2 echo "Checking $(wc -w <<< $drvs) derivations."

0 commit comments

Comments
 (0)