-
Notifications
You must be signed in to change notification settings - Fork 0
450 lines (390 loc) · 18.7 KB
/
rebol.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
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
name: 'Build Rebol'
on:
# Triggers the workflow on push or pull request events but only for the master branch
# push:
# branches: [ master ]
# pull_request:
# branches: [ master ]
# 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@v4
- name: Install Rebol
uses: oldes/[email protected]
- name: Build 64bit Rebol/Base using MSVC
run: |
./rebol3 siskin.r3 rebol --msvc %rebol3-base-windows-x64
MOVE ./tree/rebol/Rebol/msvc/Release-x64/rebol3-base-windows-x64.exe ./
- name: Build 64bit Rebol/Core using MSVC
run: |
./rebol3 siskin.r3 rebol --msvc %rebol3-core-windows-x64
MOVE ./tree/rebol/Rebol/msvc/Release-x64/rebol3-core-windows-x64.exe ./
- name: Build 64bit Rebol/Bulk using MSVC
run: |
./rebol3 siskin.r3 rebol --msvc %rebol3-bulk-windows-x64
MOVE ./tree/rebol/Rebol/msvc/Release-x64/rebol3-bulk-windows-x64.exe ./
- name: Build 32bit Rebol/Base using MSVC
run: |
./rebol3 siskin.r3 rebol --msvc %rebol3-base-windows-x86
MOVE ./tree/rebol/Rebol/msvc/Release-Win32/rebol3-base-windows-x86.exe ./
- name: Build 32bit Rebol/Core using MSVC
run: |
./rebol3 siskin.r3 rebol --msvc %rebol3-core-windows-x86
MOVE ./tree/rebol/Rebol/msvc/Release-Win32/rebol3-core-windows-x86.exe ./
- name: Build 32bit Rebol/Bulk using MSVC
run: |
./rebol3 siskin.r3 rebol --msvc %rebol3-bulk-windows-x86
MOVE ./tree/rebol/Rebol/msvc/Release-Win32/rebol3-bulk-windows-x86.exe ./
###############################################################################
# Building Rebol as a shared library...
- name: Build 32bit Rebol/Core as a shared library using MSVC
run: ./rebol3 siskin.r3 rebol --msvc %lib-rebol3-core-windows-x86
- name: Build 64bit Rebol/Core as a shared library using MSVC
run: ./rebol3 siskin.r3 rebol --msvc %lib-rebol3-core-windows-x64
###############################################################################
# Building sample host applications using Rebol as a shared library...
- name: Build 32bit Rebol/Core as a host application using MSVC
run: ./rebol3 siskin.r3 rebol --msvc %host-core-windows-x86
- name: Build 64bit Rebol/Core as a host application using MSVC
run: ./rebol3 siskin.r3 rebol --msvc %host-core-windows-x64
- name: Move library and host files into root
run: |
MOVE ./tree/rebol/Rebol/msvc/Release-Win32/lib-rebol3-core-windows-x86.dll ./
MOVE ./tree/rebol/Rebol/msvc/Release-Win32/lib-rebol3-core-windows-x86.lib ./
MOVE ./tree/rebol/Rebol/msvc/Release-Win32/host-core-windows-x86.exe ./
MOVE ./tree/rebol/Rebol/msvc/Release-x64/lib-rebol3-core-windows-x64.dll ./
MOVE ./tree/rebol/Rebol/msvc/Release-x64/lib-rebol3-core-windows-x64.lib ./
MOVE ./tree/rebol/Rebol/msvc/Release-x64/host-core-windows-x64.exe ./
###############################################################################
# Collecting build artifacts...
- uses: actions/upload-artifact@v3
with:
name: Rebol-${{github.run_id}}
path: ./rebol3-*.exe
# and lib/host variant...
- uses: actions/upload-artifact@v3
with:
name: Rebol-${{github.run_id}}
path: ./lib-*.dll
- uses: actions/upload-artifact@v3
with:
name: Rebol-${{github.run_id}}
path: ./lib-*.lib
- uses: actions/upload-artifact@v3
with:
name: Rebol-${{github.run_id}}
path: ./host-*.exe
linux:
strategy:
fail-fast: true
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rebol
uses: oldes/[email protected]
- name: Install GCC multilib
run: sudo apt-get install gcc-multilib
- name: Build 32bit Rebol/Base using gcc
run: ./rebol3 siskin.r3 rebol %rebol3-base-linux-x86
- name: Build 32bit Rebol/Core using gcc
run: ./rebol3 siskin.r3 rebol %rebol3-core-linux-x86
- name: Build 32bit Rebol/Bulk using gcc
run: ./rebol3 siskin.r3 rebol %rebol3-bulk-linux-x86
- name: Build 64bit Rebol/Base using gcc
run: ./rebol3 siskin.r3 rebol %rebol3-base-linux-x64
- name: Build 64bit Rebol/Core using gcc
run: ./rebol3 siskin.r3 rebol %rebol3-core-linux-x64
- name: Build 64bit Rebol/Bulk using gcc
run: ./rebol3 siskin.r3 rebol %rebol3-bulk-linux-x64
- name: Setup arm cross-compilers
run: |
sudo apt-get update
sudo apt-get install gcc-arm-linux-gnueabi gcc-arm-linux-gnueabihf gcc-aarch64-linux-gnu gcc-riscv64-linux-gnu
- name: Build Rebol/Base for armv6 (gnueabi)
run: ./rebol3 siskin.r3 rebol %rebol3-base-linux-gnueabi
- name: Build Rebol/Core for armv6 (gnueabi)
run: ./rebol3 siskin.r3 rebol %rebol3-core-linux-gnueabi
- name: Build Rebol/Bulk for armv6 (gnueabi)
run: ./rebol3 siskin.r3 rebol %rebol3-bulk-linux-gnueabi
- name: Build Rebol/Base for armv7 (gnueabihf)
run: ./rebol3 siskin.r3 rebol %rebol3-base-linux-gnueabihf
- name: Build Rebol/Core for armv7 (gnueabihf)
run: ./rebol3 siskin.r3 rebol %rebol3-core-linux-gnueabihf
- name: Build Rebol/Bulk for armv7 (gnueabihf)
run: ./rebol3 siskin.r3 rebol %rebol3-bulk-linux-gnueabihf
- name: Build Rebol/Base for arm64 (aarch64)
run: ./rebol3 siskin.r3 rebol %rebol3-base-linux-aarch64
- name: Build Rebol/Core for arm64 (aarch64)
run: ./rebol3 siskin.r3 rebol %rebol3-core-linux-aarch64
- name: Build Rebol/Bulk for arm64 (aarch64)
run: ./rebol3 siskin.r3 rebol %rebol3-bulk-linux-aarch64
- name: Build Rebol/Base for riscv64
run: ./rebol3 siskin.r3 rebol %rebol3-base-linux-riscv64
- name: Build Rebol/Core for riscv64
run: ./rebol3 siskin.r3 rebol %rebol3-core-linux-riscv64
- name: Build Rebol/Bulk for riscv64
run: ./rebol3 siskin.r3 rebol %rebol3-bulk-linux-riscv64
- name: Rename ARM cross-compilation target results
run: |
mv ./tree/rebol/Rebol/build/rebol3-base-linux-gnueabi ./tree/rebol/Rebol/build/rebol3-base-linux-armv6
mv ./tree/rebol/Rebol/build/rebol3-core-linux-gnueabi ./tree/rebol/Rebol/build/rebol3-core-linux-armv6
mv ./tree/rebol/Rebol/build/rebol3-bulk-linux-gnueabi ./tree/rebol/Rebol/build/rebol3-bulk-linux-armv6
mv ./tree/rebol/Rebol/build/rebol3-base-linux-gnueabihf ./tree/rebol/Rebol/build/rebol3-base-linux-armv7
mv ./tree/rebol/Rebol/build/rebol3-core-linux-gnueabihf ./tree/rebol/Rebol/build/rebol3-core-linux-armv7
mv ./tree/rebol/Rebol/build/rebol3-bulk-linux-gnueabihf ./tree/rebol/Rebol/build/rebol3-bulk-linux-armv7
mv ./tree/rebol/Rebol/build/rebol3-base-linux-aarch64 ./tree/rebol/Rebol/build/rebol3-base-linux-arm64
mv ./tree/rebol/Rebol/build/rebol3-core-linux-aarch64 ./tree/rebol/Rebol/build/rebol3-core-linux-arm64
mv ./tree/rebol/Rebol/build/rebol3-bulk-linux-aarch64 ./tree/rebol/Rebol/build/rebol3-bulk-linux-arm64
- name: Create archives from each version
run: |
gzip -9 ./tree/rebol/Rebol/build/rebol3-base-linux-x86
gzip -9 ./tree/rebol/Rebol/build/rebol3-core-linux-x86
gzip -9 ./tree/rebol/Rebol/build/rebol3-bulk-linux-x86
gzip -9 ./tree/rebol/Rebol/build/rebol3-base-linux-x64
gzip -9 ./tree/rebol/Rebol/build/rebol3-core-linux-x64
gzip -9 ./tree/rebol/Rebol/build/rebol3-bulk-linux-x64
gzip -9 ./tree/rebol/Rebol/build/rebol3-base-linux-armv6
gzip -9 ./tree/rebol/Rebol/build/rebol3-core-linux-armv6
gzip -9 ./tree/rebol/Rebol/build/rebol3-bulk-linux-armv6
gzip -9 ./tree/rebol/Rebol/build/rebol3-base-linux-armv7
gzip -9 ./tree/rebol/Rebol/build/rebol3-core-linux-armv7
gzip -9 ./tree/rebol/Rebol/build/rebol3-bulk-linux-armv7
gzip -9 ./tree/rebol/Rebol/build/rebol3-base-linux-arm64
gzip -9 ./tree/rebol/Rebol/build/rebol3-core-linux-arm64
gzip -9 ./tree/rebol/Rebol/build/rebol3-bulk-linux-arm64
gzip -9 ./tree/rebol/Rebol/build/rebol3-base-linux-riscv64
gzip -9 ./tree/rebol/Rebol/build/rebol3-core-linux-riscv64
gzip -9 ./tree/rebol/Rebol/build/rebol3-bulk-linux-riscv64
- uses: actions/upload-artifact@v3
with:
name: Rebol-${{github.run_id}}
path: ./tree/rebol/Rebol/build/rebol3-*.gz
macos:
runs-on: macos-12
steps:
- name: Checkout repository
uses: actions/checkout@v4
- 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
- name: Build 64bit Rebol/Base using clang
run: ./rebol3 siskin.r3 rebol %rebol3-base-macos-x64
- name: Build 64bit Rebol/Core using clang
run: ./rebol3 siskin.r3 rebol %rebol3-core-macos-x64
- name: Build 64bit Rebol/Bulk using clang
run: ./rebol3 siskin.r3 rebol %rebol3-bulk-macos-x64
- name: Build ARM64 Rebol/Base using clang
run: ./rebol3 siskin.r3 rebol %rebol3-base-macos-arm64
- name: Build ARM64 Rebol/Core using clang
run: ./rebol3 siskin.r3 rebol %rebol3-core-macos-arm64
- name: Build ARM64 Rebol/Bulk using clang
run: ./rebol3 siskin.r3 rebol %rebol3-bulk-macos-arm64
- name: Build 64bit Rebol/Core as a shared library
run: ./rebol3 siskin.r3 rebol %lib-rebol3-core-macos-x64
- name: Build 64bit Rebol/Core as a host application
run: ./rebol3 siskin.r3 rebol %host-core-macos-x64
- name: Codesign executables
env:
MACOS_IDENTITY_ID: ${{ secrets.MACOS_IDENTITY_ID }}
run: |
/usr/bin/codesign --force -s $MACOS_IDENTITY_ID ./tree/rebol/Rebol/build/rebol3-base-macos-x64 -v
/usr/bin/codesign --force -s $MACOS_IDENTITY_ID ./tree/rebol/Rebol/build/rebol3-core-macos-x64 -v
/usr/bin/codesign --force -s $MACOS_IDENTITY_ID ./tree/rebol/Rebol/build/rebol3-bulk-macos-x64 -v
/usr/bin/codesign --force -s $MACOS_IDENTITY_ID ./tree/rebol/Rebol/build/rebol3-base-macos-arm64 -v
/usr/bin/codesign --force -s $MACOS_IDENTITY_ID ./tree/rebol/Rebol/build/rebol3-core-macos-arm64 -v
/usr/bin/codesign --force -s $MACOS_IDENTITY_ID ./tree/rebol/Rebol/build/rebol3-bulk-macos-arm64 -v
/usr/bin/codesign --force -s $MACOS_IDENTITY_ID ./tree/rebol/Rebol/build/lib-rebol3-core-macos-x64.dylib -v
/usr/bin/codesign --force -s $MACOS_IDENTITY_ID ./tree/rebol/Rebol/build/host-core-macos-x64 -v
- name: Create archives from each version
run: |
gzip -9 ./tree/rebol/Rebol/build/rebol3-base-macos-x64
gzip -9 ./tree/rebol/Rebol/build/rebol3-core-macos-x64
gzip -9 ./tree/rebol/Rebol/build/rebol3-bulk-macos-x64
gzip -9 ./tree/rebol/Rebol/build/rebol3-base-macos-arm64
gzip -9 ./tree/rebol/Rebol/build/rebol3-core-macos-arm64
gzip -9 ./tree/rebol/Rebol/build/rebol3-bulk-macos-arm64
gzip -9 ./tree/rebol/Rebol/build/lib-rebol3-core-macos-x64.dylib
gzip -9 ./tree/rebol/Rebol/build/host-core-macos-x64
- uses: actions/upload-artifact@v3
with:
name: Rebol-${{github.run_id}}
path: ./tree/rebol/Rebol/build/*.gz
DragonFlyBSD:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Rebol in DragonFlyBSD
uses: vmactions/dragonflybsd-vm@v1
with:
usesh: true
prepare: |
pkg install -y llvm16 libnghttp2 git libiconv
run: |
ln -s /usr/local/bin/clang16 /usr/local/bin/clang
clang --version
echo "Rebol [] unprotect 'system/platform system/platform: 'DragonFlyBSD" > ~/user.reb
cat ~/user.reb
cd ..
git clone -b bootstrap https://github.com/Siskin-framework/Rebol.git --depth 1
cd ./Rebol/make/
make -f rebol-bsd-bootstrap-64bit.mk
mv ./rebol-bsd-bootstrap-64bit ../../Builder/r3
cd ../../Builder
./r3 siskin.r3 rebol rebol3-base-dragonflybsd-x64
mv ./tree/rebol/Rebol/build/rebol3-base-dragonflybsd-x64 ./rebol3-base-dragonflybsd-x64
./r3 siskin.r3 rebol rebol3-core-dragonflybsd-x64
mv ./tree/rebol/Rebol/build/rebol3-core-dragonflybsd-x64 ./rebol3-core-dragonflybsd-x64
./r3 siskin.r3 rebol rebol3-bulk-dragonflybsd-x64
mv ./tree/rebol/Rebol/build/rebol3-bulk-dragonflybsd-x64 ./rebol3-bulk-dragonflybsd-x64
- name: Prepare build results
run: |
gzip -9 ./rebol3-base-dragonflybsd-x64
gzip -9 ./rebol3-core-dragonflybsd-x64
gzip -9 ./rebol3-bulk-dragonflybsd-x64
- uses: actions/upload-artifact@v3
with:
name: Rebol-${{github.run_id}}
path: ./rebol3*.gz
OpenBSD:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Rebol in OpenBSD
uses: vmactions/openbsd-vm@v1
with:
usesh: true
prepare: |
pkg_add curl git iconv libiconv
run: |
echo "Rebol [] unprotect 'system/platform system/platform: 'openbsd" > ~/user.reb
cd ..
git clone -b bootstrap https://github.com/Siskin-framework/Rebol.git --depth 1
cd ./Rebol/make/
make -f rebol-bsd-bootstrap-64bit.mk
mv ./rebol-bsd-bootstrap-64bit ../../Builder/r3
cd ../../Builder
./r3 siskin.r3 rebol rebol3-base-openbsd-x64
mv ./tree/rebol/Rebol/build/rebol3-base-openbsd-x64 ./rebol3-base-openbsd-x64
./r3 siskin.r3 rebol rebol3-core-openbsd-x64
mv ./tree/rebol/Rebol/build/rebol3-core-openbsd-x64 ./rebol3-core-openbsd-x64
./r3 siskin.r3 rebol rebol3-bulk-openbsd-x64
mv ./tree/rebol/Rebol/build/rebol3-bulk-openbsd-x64 ./rebol3-bulk-openbsd-x64
- name: Prepare build results
run: |
gzip -9 ./rebol3-base-openbsd-x64
gzip -9 ./rebol3-core-openbsd-x64
gzip -9 ./rebol3-bulk-openbsd-x64
- uses: actions/upload-artifact@v3
with:
name: Rebol-${{github.run_id}}
path: ./rebol3*.gz
FreeBSD:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Rebol in FreeBSD
uses: vmactions/freebsd-vm@v1
with:
usesh: true
prepare: |
pkg install -y curl git
run: |
curl -L -S https://github.com/Siskin-framework/Builder/releases/download/0.13.0/siskin-freebsd-x86_64.gz --output siskin.gz
gunzip ./siskin.gz
chmod u+x ./siskin
./siskin rebol %rebol3-base-freebsd-x64
mv ./tree/rebol/Rebol/build/rebol3-base-freebsd-x64 ./rebol3-base-freebsd-x64
./siskin rebol %rebol3-core-freebsd-x64
mv ./tree/rebol/Rebol/build/rebol3-core-freebsd-x64 ./rebol3-core-freebsd-x64
./siskin rebol %rebol3-bulk-freebsd-x64
mv ./tree/rebol/Rebol/build/rebol3-bulk-freebsd-x64 ./rebol3-bulk-freebsd-x64
- name: Prepare build results
run: |
gzip -9 ./rebol3-base-freebsd-x64
gzip -9 ./rebol3-core-freebsd-x64
gzip -9 ./rebol3-bulk-freebsd-x64
- uses: actions/upload-artifact@v3
with:
name: Rebol-${{github.run_id}}
path: ./rebol3*.gz
Haiku-x86:
runs-on: ubuntu-latest
if: true
steps:
- name: Checkout repository
uses: actions/checkout@v4
- 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 Rebol for Haiku OS x86
run: docker run --rm -v $PWD:/siskin oldes/rebol-dev:haiku-x86 bash -c 'cd /siskin; rebol siskin.r3 rebol rebol3-base-haiku-x86 rebol3-core-haiku-x86 rebol3-bulk-haiku-x86'
- name: Compress result before uploading
run: |
sudo mv ./tree/rebol/Rebol/build/rebol3-base-haiku-x86 ./
sudo mv ./tree/rebol/Rebol/build/rebol3-core-haiku-x86 ./
sudo mv ./tree/rebol/Rebol/build/rebol3-bulk-haiku-x86 ./
sudo gzip -9 ./rebol3-base-haiku-x86
sudo gzip -9 ./rebol3-core-haiku-x86
sudo gzip -9 ./rebol3-bulk-haiku-x86
- uses: actions/upload-artifact@v3
with:
name: Rebol-${{github.run_id}}
path: ./rebol3-*.gz
Haiku-x64:
runs-on: ubuntu-latest
if: true
steps:
- name: Checkout repository
uses: actions/checkout@v4
- 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 Rebol for Haiku OS x64
run: docker run --rm -v $PWD:/siskin oldes/rebol-dev:haiku-x64 bash -c 'cd /siskin; rebol siskin.r3 rebol rebol3-base-haiku-x64 rebol3-core-haiku-x64 rebol3-bulk-haiku-x64'
- name: Compress result before uploading
run: |
sudo mv ./tree/rebol/Rebol/build/rebol3-base-haiku-x64 ./
sudo mv ./tree/rebol/Rebol/build/rebol3-core-haiku-x64 ./
sudo mv ./tree/rebol/Rebol/build/rebol3-bulk-haiku-x64 ./
sudo gzip -9 ./rebol3-base-haiku-x64
sudo gzip -9 ./rebol3-core-haiku-x64
sudo gzip -9 ./rebol3-bulk-haiku-x64
- uses: actions/upload-artifact@v3
with:
name: Rebol-${{github.run_id}}
path: ./rebol3-*.gz