-
Notifications
You must be signed in to change notification settings - Fork 400
262 lines (214 loc) · 10.5 KB
/
build-release.yml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
name: Build Release or Nightly Installer
on:
workflow_dispatch:
push:
branches:
- main
tags:
- 'release_xt_**'
defaults:
run:
shell: bash
jobs:
surge_version:
name: Set up surge version
runs-on: ubuntu-latest
outputs:
surge_version: ${{ steps.vers.outputs.surge_version}}
surge_is_nightly: ${{ steps.vers.outputs.surge_is_nightly}}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: calculate version
id: vers
run: |
ref=${{ github.ref }}
echo "## Creating version from '${ref}'" >> $GITHUB_STEP_SUMMARY
if [[ "$ref" == "refs/heads/main" ]]; then
echo "Generating Nightly Version" >> $GITHUB_STEP_SUMMARY
export SURGE_VERSION="NIGHTLY-$(date +%Y-%m-%d)-$(git rev-parse --short HEAD)"
echo "surge_is_nightly=1" >> "$GITHUB_OUTPUT"
else
echo "Generating Release Version" >> $GITHUB_STEP_SUMMARY
tagv=${ref/refs\/tags\/release_xt_}
export SURGE_VERSION=${tagv}
echo "surge_is_nightly=0" >> "$GITHUB_OUTPUT"
fi
echo "SURGE_VERSION=${SURGE_VERSION}" >> $GITHUB_STEP_SUMMARY
echo "surge_version=${SURGE_VERSION}" >> "$GITHUB_OUTPUT"
build_plugin:
name: Release Build - ${{ matrix.name }}
runs-on: ${{ matrix.os }}
needs: [ surge_version ]
strategy:
matrix:
include:
- os: windows-latest
name: windows-64bit
cmakeArgs: -GNinja -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang
- os: windows-latest
name: windows-arm64ec
cmakeArgs: -G"Visual Studio 17 2022" -A arm64ec -DCMAKE_SYSTEM_VERSION=10 -DSURGE_SKIP_LUA=TRUE
- os: macos-latest
name: macos
cmakeArgs: -D"CMAKE_OSX_ARCHITECTURES=arm64;x86_64"
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
- uses: apple-actions/import-codesign-certs@v3
if: runner.os == 'macOS'
with:
p12-file-base64: ${{ secrets.MAC_CERTS_P12 }}
p12-password: ${{ secrets.CERT_PWD }}
- name: Prepare for JUCE
uses: surge-synthesizer/sst-githubactions/prepare-for-juce@main
with:
os: ${{ runner.os }}
- name: Build release version
run: |
export MAC_SIGNING_CERT="${{ secrets.MAC_SIGNING_CERT_NAME }}"
export MAC_INSTALLING_CERT="${{ secrets.MAC_INSTALLING_CERT_NAME }}"
export MAC_SIGNING_ID="${{ secrets.MAC_SIGNING_ID }}"
export MAC_SIGNING_1UPW="${{ secrets.MAC_SIGNING_1UPW }}"
export MAC_SIGNING_TEAM="${{ secrets.MAC_SIGNING_TEAM }}"
export SURGE_VERSION="${{ needs.surge_version.outputs.surge_version }}"
cmake -S . -B ./build -DAZURE_PIPELINE=1 -DSURGE_VERSION="${{ needs.surge_version.outputs.surge_version }}" -DCMAKE_BUILD_TYPE=Release ${{ matrix.cmakeArgs }}
cmake --build ./build --config Release --target surge-xt-distribution --parallel 3
- name: Show Installer Directory
run: |
ls -l ./build/surge-xt-dist
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
path: build/surge-xt-dist
name: build-${{ matrix.name }}
build_plugin_docker:
name: Docker Build Ubuntu18
runs-on: ubuntu-latest
needs: [ surge_version ]
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Build in Docker
uses: surge-synthesizer/sst-githubactions/cmake-in-docker@main
with:
image: ghcr.io/surge-synthesizer/sst-dockerimages/ubuntu20_gcc11:main
username: ${{ github.actor }}
token: ${{ secrets.GITHUB_TOKEN }}
cmakeArgs: -DAZURE_PIPELINE=1 -DSURGE_BUILD_LV2=TRUE -DSURGE_VERSION="${{ needs.surge_version.outputs.surge_version }}" -DCMAKE_BUILD_TYPE=Release -GNinja
target: surge-xt-distribution
- name: Show Installer Directory
run: |
ls -l ./build/surge-xt-dist
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
path: build/surge-xt-dist
name: build-docker
publish-surge-nightly:
name: Publish Surge Nightly
if: ${{ github.ref == 'refs/heads/main' && github.repository_owner == 'surge-synthesizer' }}
runs-on: ubuntu-latest
needs: [ build_plugin, build_plugin_docker ]
steps:
- name: Upload to Nightly
uses: surge-synthesizer/sst-githubactions/upload-to-release@main
with:
tag: Nightly
reuse_tag: true
create_tag: false
token: ${{ secrets.GITHUB_TOKEN }}
release_blurb_file: resources/NightlyBlurb.md
- name: Post to Discord
uses: surge-synthesizer/sst-githubactions/discord-release-notify@main
with:
webhook: ${{ secrets.DISCORD_SURGE_WEBHOOK }}
tag: Nightly
title: "A New Surge Nightly is Available"
publish-surge-release:
name: Publish Surge Release
if: startsWith(github.ref, 'refs/tags/v') && github.repository_owner == 'surge-synthesizer'
runs-on: ubuntu-latest
needs: [ build_plugin, build_plugin_docker ]
steps:
- name: Upload to Release
uses: surge-synthesizer/sst-githubactions/upload-to-release@main
with:
tag: ${{ github.ref_name }}
reuse_tag: false
create_tag: true
token: ${{ secrets.GITHUB_TOKEN }}
- name: Post to Discord
uses: surge-synthesizer/sst-githubactions/discord-release-notify@main
with:
webhook: ${{ secrets.DISCORD_SURGE_WEBHOOK }}
tag: ${{ github.ref_name }}
title: "A New Surge Release is Available"
subtitle: "Release ${{ github.ref_name }}"
create_web_links:
name: Create Website Links
runs-on: ubuntu-latest
needs: [ surge_version, build_plugin, build_plugin_docker ]
steps:
- name: checkout for git info
uses: actions/checkout@v4
if: ${{ needs.surge_version.outputs.surge_is_nightly == 1 }}
with:
path: surge
fetch-depth: 5
- name: Checkout web
uses: actions/checkout@v4
with:
path: web
repository: surge-synthesizer/surge-synthesizer.github.io
token: ${{ secrets.SURGE_GITHUB_IO_TOKEN }}
- name: make nightly git info
if: ${{ needs.surge_version.outputs.surge_is_nightly == 1 }}
run: |
mkdir -p stage_git/git_info
pushd surge
git log -1 --pretty=format:'%h : %s - %an' > ../stage_git/git_info/git_nightly_xt_log_display
git log -1 --pretty=format:'%h : %s%n%aD%n%an%n%n%B' > ../stage_git/git_info/git_nightly_xt_log_long_display
git log -5 --pretty=format:'%h : %s - %an' > ../stage_git/git_info/git_nightly_xt_recent_five
git log -1 --pretty=format:'%h' > ../stage_git/git_info/git_nightly_xt_log_hash
popd
cat stage_git/git_info/*
- name: make nightly links
if: ${{ needs.surge_version.outputs.surge_is_nightly == 1 }}
run: |
# change this to cd website
cd web
SURGE_VERSION="${{ needs.surge_version.outputs.surge_version }}"
echo $(date "+%Y-%m-%d %H:%M:%S %Z") > src/assets/includes/latest_xt_build_time
echo $SURGE_VERSION > src/assets/includes/latest_xt_version
cp ../stage_git/git_info/* src/assets/includes
echo ${{ github.server_url }}/${{ github.repository }}/releases/download/Nightly/surge-xt-macOS-$SURGE_VERSION.dmg > src/assets/includes/latest_xt_macos_url
echo ${{ github.server_url }}/${{ github.repository }}/releases/download/Nightly/surge-xt-win64-$SURGE_VERSION-setup.exe > src/assets/includes/latest_xt_win_x64_url
echo ${{ github.server_url }}/${{ github.repository }}/releases/download/Nightly/surge-xt-win64-$SURGE_VERSION-pluginsonly.zip > src/assets/includes/latest_xt_win_x64_zip_url
echo ${{ github.server_url }}/${{ github.repository }}/releases/download/Nightly/surge-xt-win32-$SURGE_VERSION-setup.exe > src/assets/includes/latest_xt_win_x86_url
echo ${{ github.server_url }}/${{ github.repository }}/releases/download/Nightly/surge-xt-win32-$SURGE_VERSION-pluginsonly.zip > src/assets/includes/latest_xt_win_x86_zip_url
echo ${{ github.server_url }}/${{ github.repository }}/releases/download/Nightly/surge-xt-linux-x64-$SURGE_VERSION.deb > src/assets/includes/latest_xt_linux_x64_url
cat src/assets/includes/*
git config user.email "[email protected]"
git config user.name "baconpaul"
git add .
git commit -m "Update surge links for ${SURGE_VERSION} from github action"
git push origin master
- name: make release links
if: ${{ needs.surge_version.outputs.surge_is_nightly == 0 }}
run: |
mkdir -p src/assets/includes
SURGE_VERSION="${{ needs.surge_version.outputs.surge_version }}"
echo $(date "+%Y-%m-%d %H:%M:%S %Z") > src/assets/includes/stable_xt_build_time
echo $SURGE_VERSION > src/assets/includes/stable_xt_version
echo ${{ github.server_url }}/${{ github.repository }}/releases/download/$SURGE_VERSION/surge-xt-macOS-$SURGE_VERSION.dmg > src/assets/includes/stable_xt_macos_url
echo ${{ github.server_url }}/${{ github.repository }}/releases/download/$SURGE_VERSION/surge-xt-win64-$SURGE_VERSION-setup.exe > src/assets/includes/stable_xt_win_x64_url
echo ${{ github.server_url }}/${{ github.repository }}/releases/download/$SURGE_VERSION/surge-xt-win64-$SURGE_VERSION-pluginsonly.zip > src/assets/includes/stable_xt_win_x64_zip_url
echo ${{ github.server_url }}/${{ github.repository }}/releases/download/$SURGE_VERSION/surge-xt-win32-$SURGE_VERSION-setup.exe > src/assets/includes/stable_xt_win_x86_url
echo ${{ github.server_url }}/${{ github.repository }}/releases/download/$SURGE_VERSION/surge-xt-win32-$SURGE_VERSION-pluginsonly.zip > src/assets/includes/stable_xt_win_x86_zip_url
echo ${{ github.server_url }}/${{ github.repository }}/releases/download/$SURGE_VERSION/surge-xt-linux-x64-$SURGE_VERSION.deb > src/assets/includes/stable_xt_linux_x64_url
echo ${{ github.server_url }}/${{ github.repository }}/releases/tag/$SURGE_VERSION > src/assets/includes/stable_xt_other.url