diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-09-17 00:56:18 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-09-19 23:20:15 +0300 |
commit | f834fe16f68369653e576dea7bac47d36e77e364 (patch) | |
tree | 33969c5ec4b59a317987d4f71d0edac213cbca42 /tools/ci/jobs/xcode.sh | |
parent | 111670f3145dd2e388daf4867955309d056fee75 (diff) | |
download | plus-f834fe16f68369653e576dea7bac47d36e77e364.tar.gz plus-f834fe16f68369653e576dea7bac47d36e77e364.tar.bz2 plus-f834fe16f68369653e576dea7bac47d36e77e364.tar.xz plus-f834fe16f68369653e576dea7bac47d36e77e364.zip |
Add macosx builds with azure pipelines.
Diffstat (limited to 'tools/ci/jobs/xcode.sh')
-rwxr-xr-x | tools/ci/jobs/xcode.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/ci/jobs/xcode.sh b/tools/ci/jobs/xcode.sh new file mode 100755 index 000000000..81bb0ff8d --- /dev/null +++ b/tools/ci/jobs/xcode.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +uname -a +sudo xcode-select -switch /Applications/${xcodename} || exit 1 +cd packaging/OSX || exit 1 +./gethttps.sh || exit 1 +cd ../../Xcode || exit 1 +./build.sh || exit 1 +./pack.sh || exit 1 +ls -la build || exit 1 +cp build/manaplus.dmg "${artifacts}/" || exit 1 |