Skip to content

Commit

Permalink
Merge pull request #907 from xexyl/workflow-release
Browse files Browse the repository at this point in the history
  • Loading branch information
lcn2 authored Jul 12, 2024
2 parents 72a2e34 + b8a4c2c commit 2e0379a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -632,6 +632,26 @@ release: test_ioccc/prep.sh
echo "All Done!!! All Done!!! -- Jessica Noll, Age 2"; \
fi

# a slower version of release that does not write to a log file so one can see the
# full details.
#
slow_release: test_ioccc/prep.sh
${Q} ${RM} -f ${TMP_BUILD_LOG}
${Q} ./test_ioccc/prep.sh -m${MAKE} -e -o; \
EXIT_CODE="$$?"; \
if [[ $$EXIT_CODE -ne 0 ]]; then \
echo; \
echo "make $@: ERROR: ./test_ioccc/prep.sh exit code: $$EXIT_CODE"; \
fi; \
echo; \
echo "make $@: see ${BUILD_LOG} for details"; \
if [[ $$EXIT_CODE -ne 0 ]]; then \
exit "$$EXIT_CODE"; \
else \
echo "All Done!!! All Done!!! -- Jessica Noll, Age 2"; \
fi


# force test_ioccc/txzchk_test.sh results into test suite *.err files
#
# If test_ioccc/txzchk_test.sh reports some *.err files under ./test_ioccc/test_txzchk
Expand Down

0 comments on commit 2e0379a

Please sign in to comment.