Skip to content

Commit 69ccecc

Browse files
DilumAluthgeKristofferC
authored andcommitted
CI (Buildkite): on the platform_linux jobs, after building Julia, make sure that the working directory is clean (#41796)
(cherry picked from commit cb30aa7)
1 parent d8dbd6e commit 69ccecc

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.buildkite/pipelines/main/platforms/linux64.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ steps:
3535
make release
3636
make install
3737
38+
echo "--- Make sure that the working directory is clean"
39+
if [ -z "$(git status --short)" ]; then echo "INFO: The working directory is clean."; else echo "ERROR: The working directory is dirty."; echo "Output of git status:"; git status; exit 1; fi
40+
3841
echo "--- Print Julia version info"
3942
./julia -e 'using InteractiveUtils; InteractiveUtils.versioninfo()'
4043

0 commit comments

Comments
 (0)