wavetable/ci/build.sh

139 lines
4.7 KiB
Bash
Raw Normal View History

2020-05-20 16:44:46 -07:00
#!/bin/bash -e
2023-09-01 19:17:44 -07:00
set +x
2020-05-20 16:44:46 -07:00
PLUGIN="Wavetable"
# linux specific stiff
2023-08-23 08:45:23 -07:00
if [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
2020-05-20 16:44:46 -07:00
sudo apt-get update
2023-08-23 08:45:23 -07:00
sudo apt-get install clang git ninja-build ladspa-sdk freeglut3-dev g++ libasound2-dev libcurl4-openssl-dev libfreetype6-dev libjack-jackd2-dev libx11-dev libxcomposite-dev libxcursor-dev libxinerama-dev libxrandr-dev mesa-common-dev webkit2gtk-4.0 juce-tools xvfb
2020-05-20 16:44:46 -07:00
fi
# mac specific stuff
2023-08-23 08:45:23 -07:00
if [ "$(uname)" == "Darwin" ]; then
2020-05-20 16:44:46 -07:00
# Create a temp keychain
if [ -n "$GITHUB_ACTIONS" ]; then
2023-09-01 13:30:35 -07:00
if [ -n "$APPLICATION" ]; then
2023-09-01 13:16:38 -07:00
echo "Create a keychain"
security create-keychain -p nr4aGPyz Keys.keychain
2020-05-20 16:44:46 -07:00
2023-09-01 13:16:38 -07:00
echo $APPLICATION | base64 -D -o /tmp/Application.p12
echo $INSTALLER | base64 -D -o /tmp/Installer.p12
2020-05-20 16:44:46 -07:00
2023-09-01 13:16:38 -07:00
security import /tmp/Application.p12 -t agg -k Keys.keychain -P aym9PKWB -A -T /usr/bin/codesign
security import /tmp/Installer.p12 -t agg -k Keys.keychain -P aym9PKWB -A -T /usr/bin/codesign
2020-05-20 16:44:46 -07:00
2023-09-01 13:16:38 -07:00
security list-keychains -s Keys.keychain
security default-keychain -s Keys.keychain
security unlock-keychain -p nr4aGPyz Keys.keychain
security set-keychain-settings -l -u -t 13600 Keys.keychain
security set-key-partition-list -S apple-tool:,apple: -s -k nr4aGPyz Keys.keychain
fi
DEV_APP_ID="Developer ID Application: Roland Rabien (3FS7DJDG38)"
DEV_INST_ID="Developer ID Installer: Roland Rabien (3FS7DJDG38)"
2020-05-20 16:44:46 -07:00
fi
fi
ROOT=$(cd "$(dirname "$0")/.."; pwd)
cd "$ROOT"
echo "$ROOT"
2023-08-23 08:45:23 -07:00
BRANCH=${GITHUB_REF##*/}
echo "$BRANCH"
2020-05-20 16:44:46 -07:00
cd "$ROOT/ci"
rm -Rf bin
mkdir bin
# Build mac version
2023-08-23 08:45:23 -07:00
if [ "$(uname)" == "Darwin" ]; then
cd "$ROOT"
cmake --preset xcode
cmake --build --preset xcode --config Release
2020-05-20 16:44:46 -07:00
2026-01-12 11:00:35 -08:00
mkdir -p "$ROOT/ci/bin/au"
mkdir -p "$ROOT/ci/bin/vst"
mkdir -p "$ROOT/ci/bin/vst3"
cp -R "$ROOT/Builds/xcode/${PLUGIN}_artefacts/Release/AU/$PLUGIN.component" "$ROOT/ci/bin/au"
cp -R "$ROOT/Builds/xcode/${PLUGIN}_artefacts/Release/VST/$PLUGIN.vst" "$ROOT/ci/bin/vst"
cp -R "$ROOT/Builds/xcode/${PLUGIN}_artefacts/Release/VST3/$PLUGIN.vst3" "$ROOT/ci/bin/vst3"
2020-05-20 16:44:46 -07:00
cd "$ROOT/ci/bin"
2023-09-01 13:30:35 -07:00
if [ -n "$APPLICATION" ]; then
2026-01-12 11:00:35 -08:00
codesign -s "$DEV_APP_ID" -v vst/$PLUGIN.vst --options=runtime --timestamp --force
codesign -s "$DEV_APP_ID" -v vst3/$PLUGIN.vst3 --options=runtime --timestamp --force
codesign -s "$DEV_APP_ID" -v au/$PLUGIN.component --options=runtime --timestamp --force
2023-10-05 13:56:51 -07:00
else
echo "Not signing"
2023-09-01 13:16:38 -07:00
fi
2020-05-20 16:44:46 -07:00
# Notarize
cd "$ROOT/ci/bin"
2023-08-23 08:45:23 -07:00
if [[ -n "$APPLE_USER" ]]; then
2026-01-12 11:00:35 -08:00
zip -r ${PLUGIN}_Mac.zip vst/$PLUGIN.vst vst3/$PLUGIN.vst3 au/$PLUGIN.component
2023-08-23 08:45:23 -07:00
xcrun notarytool submit --verbose --apple-id "$APPLE_USER" --password "$APPLE_PASS" --team-id "3FS7DJDG38" --wait --timeout 30m ${PLUGIN}_Mac.zip
2023-09-01 14:58:57 -07:00
rm ${PLUGIN}_Mac.zip
2026-01-12 11:00:35 -08:00
xcrun stapler staple vst/$PLUGIN.vst
xcrun stapler staple vst3/$PLUGIN.vst3
xcrun stapler staple au/$PLUGIN.component
2023-10-05 13:56:51 -07:00
else
echo "Not notarizing"
2023-08-23 08:45:23 -07:00
fi
2020-05-20 16:44:46 -07:00
2026-01-12 11:00:35 -08:00
zip -r ${PLUGIN}_Mac.zip vst/$PLUGIN.vst vst3/$PLUGIN.vst3 au/$PLUGIN.component
2023-08-23 08:45:23 -07:00
if [ "$BRANCH" = "release" ]; then
curl -F "files=@${PLUGIN}_Mac.zip" "https://socalabs.com/files/set.php?key=$APIKEY"
fi
2020-05-20 16:44:46 -07:00
# Build linux version
2023-10-05 13:56:51 -07:00
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
2023-08-23 08:45:23 -07:00
cd "$ROOT"
2026-01-12 11:00:35 -08:00
2023-08-23 08:45:23 -07:00
cmake --preset ninja-gcc
cmake --build --preset ninja-gcc --config Release
2020-05-20 16:44:46 -07:00
2026-01-12 11:00:35 -08:00
mkdir -p "$ROOT/ci/bin/lv2"
mkdir -p "$ROOT/ci/bin/vst"
mkdir -p "$ROOT/ci/bin/vst3"
cp -R "$ROOT/Builds/ninja-gcc/${PLUGIN}_artefacts/Release/LV2/$PLUGIN.lv2" "$ROOT/ci/bin/lv2"
cp -R "$ROOT/Builds/ninja-gcc/${PLUGIN}_artefacts/Release/VST/lib$PLUGIN.so" "$ROOT/ci/bin/vst/$PLUGIN.so"
cp -R "$ROOT/Builds/ninja-gcc/${PLUGIN}_artefacts/Release/VST3/$PLUGIN.vst3" "$ROOT/ci/bin/vst3"
2020-05-20 16:44:46 -07:00
cd "$ROOT/ci/bin"
2026-01-10 17:56:59 -08:00
# Strip debug symbols
2026-01-12 11:00:35 -08:00
strip vst/$PLUGIN.so
strip vst3/$PLUGIN.vst3/Contents/x86_64-linux/$PLUGIN.so
strip lv2/$PLUGIN.lv2/lib$PLUGIN.so
2026-01-10 17:56:59 -08:00
2023-08-23 08:45:23 -07:00
# Upload
cd "$ROOT/ci/bin"
2026-01-12 11:00:35 -08:00
zip -r ${PLUGIN}_Linux.zip vst/$PLUGIN.so vst3/$PLUGIN.vst3 lv2/$PLUGIN.lv2
2023-08-23 08:45:23 -07:00
if [ "$BRANCH" = "release" ]; then
curl -F "files=@${PLUGIN}_Linux.zip" "https://socalabs.com/files/set.php?key=$APIKEY"
fi
2020-05-20 16:44:46 -07:00
# Build Win version
2023-10-05 13:56:51 -07:00
elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW64_NT" ]; then
2023-08-23 08:45:23 -07:00
cd "$ROOT"
2020-05-20 16:44:46 -07:00
2023-08-23 08:45:23 -07:00
cmake --preset vs
2023-08-26 20:05:23 -07:00
cmake --build --preset vs --config Release
2020-05-20 16:44:46 -07:00
2026-01-12 11:00:35 -08:00
mkdir -p "$ROOT/ci/bin/vst"
mkdir -p "$ROOT/ci/bin/vst3"
cp -R "$ROOT/Builds/vs/${PLUGIN}_artefacts/Release/VST/$PLUGIN.dll" "$ROOT/ci/bin/vst"
cp -R "$ROOT/Builds/vs/${PLUGIN}_artefacts/Release/VST3/$PLUGIN.vst3" "$ROOT/ci/bin/vst3"
2020-05-20 16:44:46 -07:00
cd "$ROOT/ci/bin"
2026-01-12 11:00:35 -08:00
7z a ${PLUGIN}_Win.zip vst/$PLUGIN.dll vst3/$PLUGIN.vst3
2020-05-20 16:44:46 -07:00
2023-08-23 08:45:23 -07:00
if [ "$BRANCH" = "release" ]; then
curl -F "files=@${PLUGIN}_Win.zip" "https://socalabs.com/files/set.php?key=$APIKEY"
fi
fi