forked from UniversalMediaServer/UniversalMediaServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathums-release-macos-arm.sh
29 lines (25 loc) · 979 Bytes
/
ums-release-macos-arm.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# This script should run on an ARM Mac.
#
# It builds the "arm" releases. They will also be
# signed/notarized so that macOS does not complain about it as much to users.
#
# It requires you to copy the gon-config-prebuild.json and gon-config-build-arm.json files from
# the ./dependencies directory into the root (one higher than here) directory, and populate
# them with your Apple Developer credentials.
# You also need to bump the versions in those files before each release. That should probably
# be automated later.
cd ..
# Clear the folder for a clean build
rm UMS-macOS-*
rm -fr target/ums*
rm -rf target/antrun
rm -rf target/archive-tmp
rm -rf target/classes
rm -rf target/generated-sources
rm -rf target/generated-test-sources
rm -rf target/maven-archiver
rm -rf target/surefire-reports
rm -rf target/test-classes
mvn -P macos-arm package -DskipTests=true
./scripts/dependencies/gon ./gon-config-prebuild.json
./scripts/dependencies/gon ./gon-config-build-arm.json