Skip to content

Commit

Permalink
Revert "Notarize MacOS dmgs sequentially instead of in parallel and
Browse files Browse the repository at this point in the history
non-verbose"

This reverts commit 2a79952.

Signed-off-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
  • Loading branch information
bhufmann committed Mar 20, 2024
1 parent 2a79952 commit f41ac7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/macosx-notarize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# Marc Dumais - adapted for the Trace Compass project (used https://github.com/eclipse-packaging/packages/blob/9282c079339625bac45c0eb394f72f8b8b5a8d5a/releng/org.eclipse.epp.config/tools/macosx-notarization-single.sh as source, as well as this EPP Jenkins job configuration: https://ci.eclipse.org/packaging/job/notarize-downloads/configure)

set -u # run with unset flag error so that missing parameters cause build failure
set +x # disable versbose
set -x # echo all commands used for debugging purposes

##
# Notatize all .dmg files found in the "RCP_DESTINATION" folder, that's assumed to
Expand Down Expand Up @@ -96,7 +96,7 @@ popd
for i in $(find ./temp -name '*.dmg'); do
LOG=$(basename ${i}).log
echo "Starting ${i}" >>${LOG}
notarize_single_dmg ${i} |& tee --append ${LOG}
notarize_single_dmg ${i} |& tee --append ${LOG} &
sleep 18s # start jobs at a small interval from each other
done

Expand Down

0 comments on commit f41ac7b

Please sign in to comment.