From 7df1fdd25fb745a65ebaa0eb89315bca13bb4358 Mon Sep 17 00:00:00 2001 From: Matthew Budd Date: Sun, 12 Jul 2020 16:11:23 -0400 Subject: [PATCH] Added logic to Mac OS pipeline to save generated DMG package as an artifact. --- pipelines/macOS_build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pipelines/macOS_build.sh b/pipelines/macOS_build.sh index 7e82d3d2..b096dce2 100755 --- a/pipelines/macOS_build.sh +++ b/pipelines/macOS_build.sh @@ -70,6 +70,9 @@ make -j $NPROC || exit 1 sudo make install || exit 1 sudo cpack -G DragNDrop || exit 1 +echo 'Pushing DMG Package to Build Artifacts' +appveyor PushArtifact fceux-*.dmg + # Debug via ssh if necessary if [ ! -z $APPVEYOR_SSH_BLOCK ]; then curl -sflL 'https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-ssh.sh' | bash -e -