FIX: #5559 mold/all for unset values. #29
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: RPi | |
on: push | |
jobs: | |
Build-RPi-Tests: | |
runs-on: ubuntu-latest | |
name: Build RPi Tests | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build Red Tests | |
uses: ./CI/Linux-32 | |
with: | |
command: rebol -qws tests/build-arm-tests.r -t RPi | |
- name: Build Red/System Tests | |
uses: ./CI/Linux-32 | |
with: | |
command: rebol -qws system/tests/build-arm-tests.r -t RPi | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: rpi-tests-bin | |
path: quick-test/runnable/arm-tests/red | |
retention-days: 3 | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: rpi-rs-bin | |
path: quick-test/runnable/arm-tests/system | |
retention-days: 3 | |
Run-RS-Tests-Armbian: | |
runs-on: [self-hosted, Linux, ARM64] | |
needs: Build-RPi-Tests | |
steps: | |
- name: Clean working directory | |
run: | | |
echo "Cleaning up previous run" | |
rm -rf ${{ github.workspace }}/* | |
- name: Retrieve tests | |
uses: actions/download-artifact@v4 | |
with: | |
name: rpi-rs-bin | |
- name: Run tests | |
run: | | |
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/. | |
chmod +x run-all.sh | |
./run-all.sh | |
# upload log file if any test failed | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: RS-Tests-Armbian-log | |
path: quick-test.log | |
Run-Red-Tests-Armbian: | |
runs-on: [self-hosted, Linux, ARM64] | |
needs: Run-RS-Tests-Armbian | |
steps: | |
- name: Clean working directory | |
run: | | |
echo "Cleaning up previous run" | |
rm -rf ${{ github.workspace }}/* | |
- name: Retrieve tests | |
uses: actions/download-artifact@v4 | |
with: | |
name: rpi-tests-bin | |
- name: Run tests | |
run: | | |
chmod +x run-all.sh | |
./run-all.sh | |
# upload log file if any test failed | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: Red-Tests-Armbian-log | |
path: quick-test.log |