Skip to content

Commit cb30aa7

Browse files
authoredAug 6, 2021
CI (Buildkite): on the platform_linux jobs, after building Julia, make sure that the working directory is clean (#41796)
1 parent a86fe0f commit cb30aa7

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

2 commit comments

Comments
 (2)

nanosoldier commented on Aug 6, 2021

@nanosoldier
Collaborator

Executing the daily package evaluation, I will reply here when finished:

@nanosoldier runtests(ALL, isdaily = true)

nanosoldier commented on Aug 6, 2021

@nanosoldier
Collaborator

Your package evaluation job has completed - possible new issues were detected. A full report can be found here.

Please sign in to comment.