forked from red/red
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (35 loc) · 1008 Bytes
/
linux.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
name: Linux-x86
on: push
jobs:
Linux-Red-Tests:
runs-on: ubuntu-latest
name: Run Linux-x86 Tests
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build Tests
uses: ./CI/Linux-gtk
with:
command: /sbin/start-stop-daemon --start --quiet --background --exec /usr/bin/Xvfb && sleep 3 && rebol -qws tests/run-all.r --batch
# upload log file if any test failed
- uses: actions/upload-artifact@v3
if: failure()
with:
name: Linux-Red-Tests-log
path: quick-test/quick-test.log
Linux-RS-Tests:
runs-on: ubuntu-latest
name: Run Linux-RS Tests
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build Tests
uses: ./CI/Linux-32
with:
command: rebol -qws system/tests/run-all.r --batch
# upload log file if any test failed
- uses: actions/upload-artifact@v3
if: failure()
with:
name: Linux-RS-Tests-log
path: quick-test/quick-test.log