Skip to content

Commit

Permalink
CI (Buildkite): on the platform_linux jobs, after building Julia, m…
Browse files Browse the repository at this point in the history
…ake sure that the working directory is clean (#41796)

(cherry picked from commit cb30aa7)
  • Loading branch information
DilumAluthge authored and staticfloat committed Dec 22, 2022
1 parent 1989793 commit 07e75b1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .buildkite/pipelines/main/platforms/linux64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ steps:
make release
make install
echo "--- Make sure that the working directory is clean"
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
echo "--- Print Julia version info"
./julia -e 'using InteractiveUtils; InteractiveUtils.versioninfo()'
Expand Down

0 comments on commit 07e75b1

Please sign in to comment.