Skip to content

Commit ab94109

Browse files
committed
Drop build isolation to speed up job
1 parent 6660e07 commit ab94109

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/scripts/build_placeholders.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@ version = "0.0.1"
2222
[tool.hatch.build.targets.wheel]
2323
bypass-selection = true
2424
EOF
25-
python -m build --wheel pkg_placeholder
25+
# We only want wheels.
26+
# We don't need build isolation because we'll trash the env anyway in CI.
27+
# Skipping isolation speeds up the job.
28+
python -m build --no-isolation --wheel pkg_placeholder
2629
mv pkg_placeholder/dist/* dist/
2730
fi
2831
fi

0 commit comments

Comments
 (0)