Trying to clean up #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |