Skip to content

Commit

Permalink
Fix up
Browse files Browse the repository at this point in the history
  • Loading branch information
Zentrik committed Aug 24, 2024
1 parent 016691a commit a0b0a3b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions utilities/build_julia.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ done
echo "--- Build Julia"
${MAKE} "${MFLAGS[@]}"


echo "--- Check that the working directory is clean"
if [ -n "$(git status --short)" ]; then
echo "ERROR: The working directory is dirty." >&2
Expand All @@ -92,10 +93,10 @@ ${JULIA_EXE} -e "import Test; Test.@test Sys.ARCH == :${ARCH:?}"
${JULIA_EXE} -e "import Test; Test.@test Sys.WORD_SIZE == ${EXPECTED_WORD_SIZE:?}"

echo "--- Show build stats"
${MAKE} build-stats
${MAKE} "${MFLAGS[@]}" build-stats

echo "--- Create build artifacts"
${MAKE} binary-dist
${MAKE} "${MFLAGS[@]}" binary-dist

# Rename the build artifact in case we want to name it differently, as is the case on `musl`.
if [[ "${JULIA_BINARYDIST_FILENAME}.tar.gz" != "${UPLOAD_FILENAME}.tar.gz" ]]; then
Expand Down

0 comments on commit a0b0a3b

Please sign in to comment.