Skip to content
This repository has been archived by the owner on Feb 25, 2024. It is now read-only.

Auto-nuke linux builds because we use ccache #72

Merged
merged 1 commit into from
Feb 28, 2018
Merged
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
8 changes: 8 additions & 0 deletions master/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,14 @@
flunkOnFailure=False
),

# If we're on linux, we're super fast and we use ccache. So auto-nuke.
steps.ShellCommand(
name="git clean -fdx, if we use ccache",
command=["git", "clean", "-fdx"],
doStepIf=is_linux,
flunkOnFailure=False,
),

# make clean first
steps.ShellCommand(
name="make cleanall",
Expand Down