We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a38bb6e commit bd0b9aaCopy full SHA for bd0b9aa
scripts/ci.sh
@@ -40,7 +40,11 @@ drvs=$(for host in $hosts; do
40
gen_home_drvs $host
41
echo -n ' '
42
done)
43
-drvs=$(echo $drvs | xargs -n1 | sort -u | xargs)
+#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)
48
49
# Filter derivations by whether they exist on cache.
50
>&2 echo "Checking $(wc -w <<< $drvs) derivations."
0 commit comments