-
Notifications
You must be signed in to change notification settings - Fork 0
399 lines (330 loc) · 12.9 KB
/
siskin.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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
name: 'Build Siskin'
on:
# Triggers the workflow when these files are modified
push:
paths:
- test/**
- tree/rebol/Siskin/**
- tree/rebol/siskin.nest
- .github/workflows/siskin.yml
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
windows:
strategy:
fail-fast: true
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Rebol
uses: oldes/[email protected]
# 32bit gcc version would fail for now (requires 32bit mingw)
# - name: Build 32bit Siskin using gcc
# run: |
# ./rebol3 siskin.r3 rebol/siskin siskin-windows-x86
# MOVE ./tree/rebol/Siskin/build/siskin-windows-x86.exe ./siskin-windows-x86-gcc.exe
#
# - name: Build 64bit Siskin using gcc
# run: |
# ./rebol3 siskin.r3 rebol/siskin siskin-windows-x86_64
# MOVE ./tree/rebol/Siskin/build/siskin-windows-x86_64.exe ./siskin-windows-x86_64-gcc.exe
- name: Build 32bit Siskin using msvc
run: |
./rebol3 siskin.r3 rebol/siskin --msvc siskin-windows-x86
MOVE ./tree/rebol/Rebol/msvc/Release-Win32/siskin-windows-x86.exe ./
- name: Build 64bit Siskin using msvc
run: |
./rebol3 siskin.r3 rebol/siskin --msvc siskin-windows-x86_64
MOVE ./tree/rebol/Rebol/msvc/Release-x64/siskin-windows-x86_64.exe ./
#- name: Test 32bit Siskin project (gcc)
# run: ./siskin-windows-x86-gcc.exe
#- name: Test 64bit Siskin project (gcc)
# run: ./siskin-windows-x86_64-gcc.exe
- name: Test 32bit Siskin project (msvc)
run: ./siskin-windows-x86.exe
- name: Test 64bit Siskin project (msvc)
run: ./siskin-windows-x86_64.exe
- name: List all possible test targets
run: ./siskin-windows-x86_64.exe test --list
- name: Test build 1
run: ./siskin-windows-x86_64.exe test test-1
- name: Test build 2
run: ./siskin-windows-x86_64.exe test test-2
- name: Test build 3
run: ./siskin-windows-x86_64.exe test test-3
- name: Test build 4
run: ./siskin-windows-x86_64.exe test test-4
- name: Test build 5
run: ./siskin-windows-x86_64.exe test test-5
- name: Test build 6
run: ./siskin-windows-x86_64.exe test test-6
- name: Test build 7
run: ./siskin-windows-x86_64.exe test test-7
- name: Test build 8
run: ./siskin-windows-x86_64.exe test "test-8 spaced"
- name: Test build multiple at once
run: ./siskin-windows-x86_64.exe test 1 2 "test-8 spaced"
- name: Test build with output override
run: |
./siskin-windows-x86_64.exe test --output new.exe test-1
./new.exe
- name: Test Rebol Preprocessor
run: |
./siskin-windows-x86_64.exe test test.r3
./rebol3 ./test/build/test.r3
- name: Test build 8 (MSVC)
run: ./siskin-windows-x86_64.exe test --msvc 8
- name: Test build 8 with output override (MSVC)
run: |
./siskin-windows-x86_64.exe test --msvc -o new.exe 8
./new.exe
- name: Test only single command
run: ./siskin-windows-x86_64.exe test list-dir
- uses: actions/upload-artifact@v3
with:
name: Siskin-windows
path: |
./siskin-windows-x86.exe
./siskin-windows-x86_64.exe
# ./siskin-windows-x86-gcc.exe
# ./siskin-windows-x86_64-gcc.exe
linux:
strategy:
fail-fast: true
matrix:
os: [ubuntu-20.04]
#os: [ubuntu-latest]
#os: [ubuntu-20.04, ubuntu-18.04]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Rebol
uses: oldes/[email protected]
- name: Install GCC multilib
run: sudo apt-get install gcc-multilib
- name: Build 32bit Siskin using gcc
run: ./rebol3 siskin.r3 rebol/siskin siskin-linux-x86
- name: Build 64bit Siskin using gcc
run: ./rebol3 siskin.r3 rebol/siskin siskin-linux-x86_64
- name: Move results into the root for uploading
run: |
mv ./tree/rebol/Siskin/build/siskin-linux-x86_64 ./
mv ./tree/rebol/Siskin/build/siskin-linux-x86 ./
- name: List all possible test targets
run: ./siskin-linux-x86_64 test --list
- name: Test build 1
run: ./siskin-linux-x86_64 test test-1
- name: Test build 2
run: ./siskin-linux-x86_64 test test-2
- name: Test build 3
run: ./siskin-linux-x86_64 test test-3
- name: Test build 4
run: ./siskin-linux-x86_64 test test-4
- name: Test build 5
run: ./siskin-linux-x86_64 test test-5
- name: Test build 6
run: ./siskin-linux-x86_64 test test-6
- name: Test build 7
run: ./siskin-linux-x86_64 test test-7
- name: Test build 8
run: ./siskin-linux-x86_64 test "test-8 spaced"
- name: Test build multiple at once
run: ./siskin-linux-x86_64 test 1 2 "test-8 spaced"
- name: Test build with output override
run: |
./siskin-linux-x86_64 test --output new test-1
./new
- name: Test Rebol Preprocessor
run: |
./siskin-linux-x86_64 test test.r3
./rebol3 ./test/build/test.r3
- name: Test only single command
run: ./siskin-linux-x86_64 test list-dir
- name: Compress results before uploading
run: |
gzip -9 ./siskin-linux-x86_64
gzip -9 ./siskin-linux-x86
- uses: actions/upload-artifact@v3
with:
name: Siskin-linux
path: ./siskin-linux*
macos:
runs-on: macos-12
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Rebol
uses: oldes/[email protected]
- name: Install the Apple certificate
# https://docs.github.com/en/actions/guides/installing-an-apple-certificate-on-macos-runners-for-xcode-development
env:
BUILD_CERTIFICATE_BASE64: ${{ secrets.MACOS_CERTIFICATE }}
P12_PASSWORD: ${{ secrets.MACOS_CERTIFICATE_PWD }}
KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }}
run: |
# create variables
CERTIFICATE_PATH=$RUNNER_TEMP/build_certificate.p12
KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db
# import certificate from secrets
echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode --output $CERTIFICATE_PATH
# create temporary keychain
security create-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH
security set-keychain-settings -lut 21600 $KEYCHAIN_PATH
security unlock-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH
# import certificate to keychain
security import $CERTIFICATE_PATH -P "$P12_PASSWORD" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH
security list-keychain -d user -s $KEYCHAIN_PATH
# list available codesigning identities
security find-identity -v -p codesigning
#It looks it's not possible to build 32bit macOS version anymore using GitHub actions!
#
#- name: Build 32bit Siskin
# run: |
# ./rebol3 siskin.r3 rebol/siskin %siskin-windows-x86-osx
# mv ./tree/rebol/Siskin/build/siskin-windows-x86-osx ./
- name: Build x86_64 Siskin
run: ./rebol3 siskin.r3 rebol/siskin siskin-macos-x86_64
- name: Build ARM64 Siskin
run: ./rebol3 siskin.r3 rebol/siskin siskin-macos-aarch64
- name: Move results into the root for uploading
run: |
mv ./tree/rebol/Siskin/build/siskin-macos-x86_64 ./
mv ./tree/rebol/Siskin/build/siskin-macos-aarch64 ./
- name: Codesign executables
env:
MACOS_IDENTITY_ID: ${{ secrets.MACOS_IDENTITY_ID }}
run: |
/usr/bin/codesign --force -s $MACOS_IDENTITY_ID ./siskin-macos-x86_64 -v
/usr/bin/codesign --force -s $MACOS_IDENTITY_ID ./siskin-macos-aarch64 -v
- name: List all possible test targets
run: ./siskin-macos-x86_64 test --list
- name: Test build 1
run: ./siskin-macos-x86_64 test test-1
- name: Test build 2
run: ./siskin-macos-x86_64 test test-2
- name: Test build 3
run: ./siskin-macos-x86_64 test test-3
- name: Test build 4
run: ./siskin-macos-x86_64 test test-4
- name: Test build 5
run: ./siskin-macos-x86_64 test test-5
- name: Test build 6
run: ./siskin-macos-x86_64 test test-6
- name: Test build 7
run: ./siskin-macos-x86_64 test test-7
- name: Test build 8
run: ./siskin-macos-x86_64 test "test-8 spaced"
- name: Test build multiple at once
run: ./siskin-macos-x86_64 test 1 2 "test-8 spaced"
- name: Test build with output override
run: |
./siskin-macos-x86_64 test --output new test-1
./new
- name: Test Rebol Preprocessor
run: |
./siskin-macos-x86_64 test test.r3
./rebol3 ./test/build/test.r3
- name: Test only single command
run: ./siskin-macos-x86_64 test list-dir
- name: Compress results before uploading
run: |
gzip -9 ./siskin-macos-x86_64
gzip -9 ./siskin-macos-aarch64
- uses: actions/upload-artifact@v3
with:
name: Siskin-macos
path: ./siskin-macos-*
script:
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Rebol
uses: oldes/[email protected]
- name: Preprocess Siskin script
run: ./rebol3 siskin.r3 rebol/siskin siskin.r3
- name: Move results into the root for uploading
run: |
mv ./tree/rebol/Siskin/build/siskin.r3 ./build.r3
- name: List all possible test targets
run: ./rebol3 build.r3 test --list
- name: Test build 1
run: ./rebol3 build.r3 test test-1
- name: Test build 2
run: ./rebol3 build.r3 test test-2
- name: Test build 3
run: ./rebol3 build.r3 test test-3
- name: Test build 4
run: ./rebol3 build.r3 test test-4
- name: Test build 5
run: ./rebol3 build.r3 test test-5
- name: Test build 6
run: ./rebol3 build.r3 test test-6
- name: Test build 7
run: ./rebol3 build.r3 test test-7
- name: Test build 8
run: ./rebol3 build.r3 test "test-8 spaced"
- name: Test build multiple at once
run: ./rebol3 build.r3 test 1 2 "test-8 spaced"
- name: Test Rebol Preprocessor
run: |
./rebol3 build.r3 test test.r3
./rebol3 ./test/build/test.r3
- name: Test only single command
run: ./rebol3 build.r3 test list-dir
- name: Compress results before uploading
run: gzip -9 ./build.r3
- uses: actions/upload-artifact@v3
with:
name: Siskin-script
path: ./build.r3.gz
Haiku-x86:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Download Haiku Rebol-dev container
run: docker pull docker.io/oldes/rebol-dev:haiku-x86
- name: Build all Siskin for Haiku OS x86
run: docker run --rm -v $PWD:/siskin oldes/rebol-dev:haiku-x86 bash -c 'cd /siskin; rebol siskin.r3 rebol/siskin siskin-haiku-x86'
- name: Compress result before uploading
run: |
sudo mv ./tree/rebol/Siskin/build/siskin-haiku-x86 ./
sudo gzip -9 ./siskin-haiku-x86
- uses: actions/upload-artifact@v3
with:
name: Siskin-Haiku
path: ./siskin-haiku-x86.gz
Haiku-x86_64:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Download Haiku Rebol-dev container
run: docker pull docker.io/oldes/rebol-dev:haiku-x64
- name: Build all Siskin for Haiku OS x86_64
run: docker run --rm -v $PWD:/siskin oldes/rebol-dev:haiku-x64 bash -c 'cd /siskin; rebol siskin.r3 rebol/siskin siskin-haiku-x86_64'
- name: Compress result before uploading
run: |
sudo mv ./tree/rebol/Siskin/build/siskin-haiku-x86_64 ./
sudo gzip -9 ./siskin-haiku-x86_64
- uses: actions/upload-artifact@v3
with:
name: Siskin-Haiku
path: ./siskin-haiku-x86_64.gz