-
-
Notifications
You must be signed in to change notification settings - Fork 208
328 lines (298 loc) · 20.6 KB
/
main.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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
name: CI
on:
repository_dispatch:
workflow_dispatch:
inputs:
failfast:
description: 'Abort test suite after first test failure.'
default: false
required: false
push:
# Sequence of patterns matched against refs/heads
branches:
- master # Push events on master branch
jobs:
build:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, macos-latest]
include:
- operating-system: macos-latest
MVN_COMMAND: mvn -Dmaven.test.skip=true
GITHUB_RELEASE_NAME: The Clarke release
TOOLBOX_PRODUCT_ZIP: TLAToolbox-1.8.0-macosx.cocoa.x86_64.zip
- operating-system: ubuntu-latest
MVN_COMMAND: xvfb-run mvn -Dtest.skip=true -Dmaven.test.failure.ignore=true
GITHUB_RELEASE_NAME: The Clarke release
TOOLBOX_PRODUCT_ZIP: TLAToolbox-1.8.0-linux.gtk.x86_64.zip
TOOLBOX_PRODUCT_ZIP_WIN: TLAToolbox-1.8.0-win32.win32.x86_64.zip
steps:
- uses: actions/checkout@v2
with:
# Number of commits to fetch. 0 indicates all history.
# jgit task nested in customBuild.xml fails without history.
fetch-depth: '0'
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
##
## Speed-up build with a cached ~/.m2/repository (300+ MB).
##
- uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
##
## Configure GPG key (apt repo below)
##
- name: Set up GNUPG private key
if: matrix.operating-system == 'ubuntu-latest'
run: 'echo "$GPG_PRIVATE_KEY" > key.gpg && gpg --import key.gpg && rm key.gpg'
shell: bash
env:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
##
## Configure SSH privkey (INRIA upload below)
##
- name: Set up SSH private key
run: 'mkdir -p ~/.ssh && echo "$INRIA_SSH_PRIVKEY" > ~/.ssh/id_rsa && chmod 600 ~/.ssh/id_rsa'
shell: bash
env:
INRIA_SSH_PRIVKEY: ${{ secrets.INRIA_SSH_PRIVKEY }}
##
## Set up Comodo code signing cert/key and configure maven (settings.xml) to
## have CODESIGN_KEYSTOREPASS_KEY, path to ComodoCertificate.p12, and the alias
## of the cert/key in ComodoCertificate.p12.
##
- name: Set up maven credentials
run: 'echo "$MVN_SETTINGS_XML" > ~/.m2/settings.xml'
shell: bash
env:
MVN_SETTINGS_XML: ${{ secrets.MVN_SETTINGS_XML_2024 }}
- name: Set up Comodo Codesign keystore part I
run: 'echo "$COMODO_CODESIGN_COMBINED_PEM" > ComodoCertificate.pem'
shell: bash
env:
COMODO_CODESIGN_COMBINED_PEM: ${{ secrets.COMODO_CODESIGN_COMBINED_PEM }}
- name: Set up Comodo Codesign keystore part II
if: matrix.operating-system == 'ubuntu-latest'
run: |
openssl version
openssl pkcs12 -legacy -export -name ComodoCertificate -out ComodoCertificate.p12 -passout pass:${{ secrets.CODESIGN_KEYSTOREPASS_KEY }} -in ComodoCertificate.pem
rm ComodoCertificate.pem
keytool -importkeystore -srckeystore ComodoCertificate.p12 -srcstoretype pkcs12 -srcstorepass ${{ secrets.CODESIGN_KEYSTOREPASS_KEY }} -deststoretype pkcs12 -destkeystore ~/.m2/ComodoCertificate.jks -destkeypass ${{ secrets.CODESIGN_KEYSTOREPASS_KEY }} -deststorepass ${{ secrets.CODESIGN_KEYSTOREPASS_KEY }}
rm ComodoCertificate.p12
- name: Set up Comodo Codesign keystore part II
if: matrix.operating-system == 'macos-latest'
run: |
openssl version
openssl pkcs12 -export -name ComodoCertificate -out ComodoCertificate.p12 -passout pass:${{ secrets.CODESIGN_KEYSTOREPASS_KEY }} -in ComodoCertificate.pem
rm ComodoCertificate.pem
keytool -importkeystore -srckeystore ComodoCertificate.p12 -srcstoretype pkcs12 -srcstorepass ${{ secrets.CODESIGN_KEYSTOREPASS_KEY }} -deststoretype pkcs12 -destkeystore ~/.m2/ComodoCertificate.jks -destkeypass ${{ secrets.CODESIGN_KEYSTOREPASS_KEY }} -deststorepass ${{ secrets.CODESIGN_KEYSTOREPASS_KEY }}
rm ComodoCertificate.p12
##
## Run TLC tests.
##
## The following process first compiles and packages (dist) the tla2tools.jar file. Next, it
## runs the test suite in parallel, aborting the run and failing the workflow upon the first
## test failure if test.halt=true. Regardless of any test failures, a JUnitReport is generated.
## Both the report and the test results (in XML format) are uploaded as workflow artifacts for
## potential local download and further analysis. Additionally, mikepenz/action-junit-report
## publishes the stack traces from the test results. If desired, the test.halt setting can be
## removed to allow the test suite to run to completion.
## (The same sequence of steps is executed by pr.yml)
##
- name: Run TLC tests
run: ant -f tlatools/org.lamport.tlatools/customBuild.xml info compile compile-test test -Dtest.halt=${{ inputs.temperature }}
- name: Generate JUnitReport
if: always()
run: ant -f tlatools/org.lamport.tlatools/customBuild.xml test-report
- name: Upload raw unit test results
uses: actions/upload-artifact@v4
if: always()
with:
## Name of the artifact to upload (discriminated by os to prevent name conflicts).
name: testresults-${{ matrix.operating-system }}
path: |
tlatools/org.lamport.tlatools/target/surefire-reports/TEST-*.xml
tlatools/org.lamport.tlatools/target/surefire-reports/TESTS-TestSuites.xml
tlatools/org.lamport.tlatools/target/surefire-reports/junit-noframes.html
- name: Publish unit test results
uses: mikepenz/action-junit-report@v4
if: always()
with:
check_name: JUnit Test Report on ${{ matrix.operating-system }}
report_paths: 'tlatools/org.lamport.tlatools/target/surefire-reports/TEST-*.xml'
##
## Build TLC and Toolbox (logger reduces verbosity).
##
- name: Build with Maven (Linux)
run: ${{ matrix.MVN_COMMAND }} -Pcodesigning -Dtycho.disableP2Mirrors=true -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -fae -B verify --file pom.xml
##
## Create signed apt repository out of Linux Toolbox zip.
##
- name: Create apt repository
if: matrix.operating-system == 'ubuntu-latest'
run: |
chmod -x toolbox/org.lamport.tla.toolbox.product.product/createAptRepo.sh
cp toolbox/org.lamport.tla.toolbox.product.product/target/*.deb toolbox/org.lamport.tla.toolbox.product.product/target/repository/
cd toolbox/org.lamport.tla.toolbox.product.product/target/repository/
bash -x ../../createAptRepo.sh .
##
## Create RPM out of Linux Toolbox zip.
##
# - name: Create RPM (RedHat/CentOS package)
# if: matrix.operating-system == 'ubuntu-latest'
# run: |
# sudo apt-get install alien --no-install-recommends -y
# cd toolbox/org.lamport.tla.toolbox.product.product/target/
# fakeroot alien --to-rpm --scripts TLAToolbox-?.?.?-linux.gtk.amd64.deb
# cp TLA*.rpm products/
##
## Upload Linux and Windows Toolbox zip and tla2tools.jar to Github release.
##
- name: Upload release assets
if: matrix.operating-system == 'ubuntu-latest'
run: |
## Crawl release id
DRAFT_RELEASE=$(curl -sS -H "Authorization: token ${{secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{ github.repository }}/releases --header "Content-Type: application/json" | jq '.[]| select(.name=="${{ matrix.GITHUB_RELEASE_NAME }}") | .id')
## Delete old assets and upload replacement assets (if delete fails we still try to upload the new asset)
ID=$(curl -sS -H "Authorization: token ${{secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{ github.repository }}/releases/$DRAFT_RELEASE/assets --header "Content-Type: application/json" | jq '.[]| select(.name == "tla2tools.jar") | .id')
curl -sS -X DELETE -H "Authorization: token ${{secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{ github.repository }}/releases/assets/$ID
curl -s -X POST -H "Content-Type: application/zip" -H "Authorization: token ${{secrets.GITHUB_TOKEN}}" https://uploads.github.com/repos/${{ github.repository }}/releases/$DRAFT_RELEASE/assets?name=tla2tools.jar --upload-file tlatools/org.lamport.tlatools/dist/tla2tools.jar
ID=$(curl -sS -H "Authorization: token ${{secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{ github.repository }}/releases/$DRAFT_RELEASE/assets --header "Content-Type: application/json" | jq '.[]| select(.name == "${{matrix.TOOLBOX_PRODUCT_ZIP_WIN}}") | .id')
curl -sS -X DELETE -H "Authorization: token ${{secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{ github.repository }}/releases/assets/$ID
curl -s -X POST -H "Content-Type: application/zip" -H "Authorization: token ${{secrets.GITHUB_TOKEN}}" https://uploads.github.com/repos/${{ github.repository }}/releases/$DRAFT_RELEASE/assets?name=${{matrix.TOOLBOX_PRODUCT_ZIP_WIN}} --upload-file toolbox/org.lamport.tla.toolbox.product.product/target/products/${{matrix.TOOLBOX_PRODUCT_ZIP_WIN}}
ID=$(curl -sS -H "Authorization: token ${{secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{ github.repository }}/releases/$DRAFT_RELEASE/assets --header "Content-Type: application/json" | jq '.[]| select(.name == "${{matrix.TOOLBOX_PRODUCT_ZIP}}") | .id')
curl -sS -X DELETE -H "Authorization: token ${{secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{ github.repository }}/releases/assets/$ID
curl -s -X POST -H "Content-Type: application/zip" -H "Authorization: token ${{secrets.GITHUB_TOKEN}}" https://uploads.github.com/repos/${{ github.repository }}/releases/$DRAFT_RELEASE/assets?name=${{matrix.TOOLBOX_PRODUCT_ZIP}} --upload-file toolbox/org.lamport.tla.toolbox.product.product/target/products/${{matrix.TOOLBOX_PRODUCT_ZIP}}
ID=$(curl -sS -H "Authorization: token ${{secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{ github.repository }}/releases/$DRAFT_RELEASE/assets --header "Content-Type: application/json" | jq '.[]| select(.name == "TLAToolbox-1.8.0.deb") | .id')
curl -sS -X DELETE -H "Authorization: token ${{secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{ github.repository }}/releases/assets/$ID
curl -s -X POST -H "Content-Type: application/zip" -H "Authorization: token ${{secrets.GITHUB_TOKEN}}" https://uploads.github.com/repos/${{ github.repository }}/releases/$DRAFT_RELEASE/assets?name=TLAToolbox-1.8.0.deb --upload-file toolbox/org.lamport.tla.toolbox.product.product/target/TLAToolbox-1.8.0-linux.gtk.amd64.deb
ID=$(curl -sS -H "Authorization: token ${{secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{ github.repository }}/releases/$DRAFT_RELEASE/assets --header "Content-Type: application/json" | jq '.[]| select(.name == "p2repository.zip") | .id')
curl -sS -X DELETE -H "Authorization: token ${{secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{ github.repository }}/releases/assets/$ID
curl -s -X POST -H "Content-Type: application/zip" -H "Authorization: token ${{secrets.GITHUB_TOKEN}}" https://uploads.github.com/repos/${{ github.repository }}/releases/$DRAFT_RELEASE/assets?name=p2repository.zip --upload-file toolbox/org.lamport.tla.toolbox.product.product/target/org.lamport.tla.toolbox.product.product-1.4.0-SNAPSHOT.zip
## Generate changelog
cd general/docs/changelogs
## Append sha1 sum to changelog (last line of changelog has the table header).
echo "$(sha1sum ../../../tlatools/org.lamport.tlatools/dist/tla2tools.jar | cut -f 1 -d " ")|tla2tools.jar" >> ch1_8_0.md
echo "$(sha1sum ../../../toolbox/org.lamport.tla.toolbox.product.product/target/products/${{matrix.TOOLBOX_PRODUCT_ZIP_WIN}} | cut -f 1 -d " ")|${{matrix.TOOLBOX_PRODUCT_ZIP_WIN}}" >> ch1_8_0.md
echo "$(sha1sum ../../../toolbox/org.lamport.tla.toolbox.product.product/target/products/${{matrix.TOOLBOX_PRODUCT_ZIP}} | cut -f 1 -d " ")|${{matrix.TOOLBOX_PRODUCT_ZIP}}" >> ch1_8_0.md
echo "TBD|macOS" >> ch1_8_0.md
## Two above as one-liner without intermediate file.
$(jq -n --argjson changelog "$(cat ch1_8_0.md | jq --raw-input --slurp .)" -f gh-1_8_0.jq > gh-1_8_0.json)
## Update draft release with latest changelog in case it changed.
## https://developer.github.com/v3/repos/releases/#edit-a-release
curl -sS -H "Authorization: token ${{secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{ github.repository }}/releases/$DRAFT_RELEASE -d @gh-1_8_0.json -X PATCH --header "Content-Type: application/json"
- name: Upload assets to INRIA
if: matrix.operating-system == 'ubuntu-latest'
run: |
## Thanks Apple for your walled garden! Delete the *unsigned* Toolbox maxOS zip created by the Linux/ubuntu job. The macOS job below creates and rsyncs a *signed* zip file.
rm toolbox/org.lamport.tla.toolbox.product.product/target/products/TLAToolbox-1.8.0-macosx.cocoa.x86_64.zip
## Upload p2 and apt repository to INRIA machine.
rsync -e "ssh -o StrictHostKeyChecking=no -i ~/.ssh/id_rsa" --delete -av tlatools/org.lamport.tlatools/dist/tla2tools.jar [email protected]:dist/
rsync -e "ssh -o StrictHostKeyChecking=no -i ~/.ssh/id_rsa" --delete -av toolbox/org.lamport.tla.toolbox.product.product/target/products/*.zip [email protected]:products/
rsync -e "ssh -o StrictHostKeyChecking=no -i ~/.ssh/id_rsa" --delete -av toolbox/org.lamport.tla.toolbox.product.product/target/repository/ [email protected]:repository/
rsync -e "ssh -o StrictHostKeyChecking=no -i ~/.ssh/id_rsa" --delete -av toolbox/org.lamport.tla.toolbox.doc/html/ [email protected]:doc/
##
## Update all git tags to make the download urls work, i.e.
## //github.com/tlaplus/tlaplus/releases/download/nightly/tla2tools.jar
## won't work without the 'nightly' tag pointing to the corresponding
## git sha of this build.
##
- name: Update tags
if: matrix.operating-system == 'ubuntu-latest'
run: |
git config --local user.email "[email protected]"
git config --local user.name "TLA+ GitHub Action"
git tag -f v1.8.0
git push https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git --follow-tags --tags --force
##
## Upload tla2tools.jar to OSS Sonatype.
##
- name: Upload to OSS Sonatype
if: matrix.operating-system == 'ubuntu-latest'
continue-on-error: true
run: |
cd tlatools/org.lamport.tlatools/
## Strip packages from the tla2tools.jar fatjar that are declared dependencies of the maven package (see github.xml).
zip -d dist/tla2tools.jar javax/\* com/\* META-INF/mailcap META-INF/javamail*
## Upload tla2tools.jar maven packages to OSS Sonatype (see ossrh.xml.README).
mvn gpg:sign-and-deploy-file -Durl=https://oss.sonatype.org/content/repositories/snapshots -DrepositoryId=ossrh -DpomFile=ossrh.xml -Dfile=dist/tla2tools.jar -f ossrh.xml
##
## Trigger build of CommunityModule as integration tests, unless it creates and endless
## cycle if this build was triggered from a build of the CommunityModules.
##
- name: Integration tests with CommunityModules
if: matrix.operating-system == 'ubuntu-latest' && github.event.client_payload.source != 'CommunityModules'
uses: peter-evans/repository-dispatch@v1
with:
token: ${{ secrets.COMMUNITYMODULES_ACCESS_TOKEN }}
repository: tlaplus/CommunityModules
event-type: tlaplus-dispatch
##
## Trigger CI run of tlaplus/examples as integration tests.
##
- name: Integration tests with tlaplus/examples
if: matrix.operating-system == 'ubuntu-latest'
uses: peter-evans/repository-dispatch@v1
with:
token: ${{ secrets.COMMUNITYMODULES_ACCESS_TOKEN }}
repository: tlaplus/examples
event-type: tlaplus-dispatch
##
## Trigger build of VSCode extension.
##
- name: VSCode nightly build
if: matrix.operating-system == 'ubuntu-latest'
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.COMMUNITYMODULES_ACCESS_TOKEN }}
repository: tlaplus/vscode-tlaplus
event-type: tlaplus-dispatch
################################# macOS #################################
##
## Sign Toolbox macOS zip file.
##
- name: Set up Apple Certs
if: matrix.operating-system == 'macos-latest'
run: 'echo "$APPLE_CODESIGN_CERTS" > certs.pem'
shell: bash
env:
APPLE_CODESIGN_CERTS: ${{ secrets.APPLE_CODESIGN_CERTS }}
- name: Set up Apple Key (dev)
if: matrix.operating-system == 'macos-latest'
run: 'echo "$APPLE_CODESIGN_DEVELOPER_PRIVKEY" > dev.pem'
shell: bash
env:
APPLE_CODESIGN_DEVELOPER_PRIVKEY: ${{ secrets.APPLE_CODESIGN_DEVELOPER_PRIVKEY }}
- name: Create macOS keychain, unzip, sign, and zip up TLA+ Toolbox for macOS
if: matrix.operating-system == 'macos-latest'
run: |
## Convert pems stored as Github secrets to .p12 files that 'security import' accepts.
openssl pkcs12 -export -inkey dev.pem -in certs.pem -out dev.p12 -passin pass:${{ secrets.APPLE_CERT_PASSWORD }} -passout pass:${{ secrets.APPLE_CERT_PASSWORD }}
## Create a fresh keychain "tla" and import certs and keys into it.
security create-keychain -p ${{ secrets.APPLE_CERT_PASSWORD }} tla
security import certs.pem -k tla -P ${{ secrets.APPLE_CERT_PASSWORD }} -T /usr/bin/codesign
security import dev.p12 -k tla -P ${{ secrets.APPLE_CERT_PASSWORD }} -T /usr/bin/codesign
## Listing the keychain once is apparently required for codesign to work.
security list-keychains -s tla
## Not sure what this is for, but hey: https://stackoverflow.com/a/40039594
security set-key-partition-list -S apple-tool:,apple: -s -k ${{ secrets.APPLE_CERT_PASSWORD }} tla
## Unzip, sign, and zip up the TLA Toolbox.
unzip toolbox/org.lamport.tla.toolbox.product.product/target/products/${{ matrix.TOOLBOX_PRODUCT_ZIP }}
codesign --force --identifier org.lamport.tla.toolbox.product.product --keychain tla --deep --display --entitlements toolbox/org.lamport.tla.toolbox.product.product/entitlements.plist --options runtime --verbose=4 -h -f -s "Developer ID Application: M K (3PCM4M3RWK)" "TLA+ Toolbox.app"
ditto -ck --sequesterRsrc --keepParent "TLA+ Toolbox.app" ${{ matrix.TOOLBOX_PRODUCT_ZIP }}
#xcrun altool --notarize-app --primary-bundle-id "org.lamport.tla.toolbox.product.product" --username "${{secrets.APPLE_CODESIGN_DEVELOPER_ID}}" --password "${{secrets.APPLE_CODESIGN_DEVELOPER_PASSWORD}}" --file "${{ matrix.TOOLBOX_PRODUCT_ZIP }}"
xcrun notarytool submit --wait --team-id "${{secrets.APPLE_CODESIGN_TEAM_ID}}" --apple-id "${{secrets.APPLE_CODESIGN_DEVELOPER_ID}}" --password "${{secrets.APPLE_CODESIGN_DEVELOPER_PASSWORD}}" "${{ matrix.TOOLBOX_PRODUCT_ZIP }}"
## Upload signed TLAToolbox zip to Github release.
DRAFT_RELEASE=$(curl -sS -H "Authorization: token ${{secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{ github.repository }}/releases --header "Content-Type: application/json" | jq '.[]| select(.name=="${{ matrix.GITHUB_RELEASE_NAME }}") | .id')
ID=$(curl -sS -H "Authorization: token ${{secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{ github.repository }}/releases/$DRAFT_RELEASE/assets --header "Content-Type: application/json" | jq '.[]| select(.name == "${{ matrix.TOOLBOX_PRODUCT_ZIP }}") | .id')
curl -sS -X DELETE -H "Authorization: token ${{secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{ github.repository }}/releases/assets/$ID
curl -s -X POST -H "Content-Type: application/zip" -H "Authorization: token ${{secrets.GITHUB_TOKEN}}" https://uploads.github.com/repos/${{ github.repository }}/releases/$DRAFT_RELEASE/assets?name=${{ matrix.TOOLBOX_PRODUCT_ZIP }} --upload-file ${{ matrix.TOOLBOX_PRODUCT_ZIP }}
## Upload p2 and apt repository to INRIA machine.
rsync -e "ssh -o StrictHostKeyChecking=no -i ~/.ssh/id_rsa" --delete -av ${{ matrix.TOOLBOX_PRODUCT_ZIP }} [email protected]:products/