Skip to content

Upgraded the Builder build system to compile regression tests and mad… #176

Upgraded the Builder build system to compile regression tests and mad…

Upgraded the Builder build system to compile regression tests and mad… #176

Workflow file for this run

# See ci.yml.tabs for the properly indented version if you are having trouble seeing the indentation in this file.
# This version is only for Github to parse.
name: DFPSR tests
on: [push]
jobs:
scriptedTest:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run tests on Linux
if: matrix.os == 'ubuntu-latest'
run: |
cd ./Source/test
./test.sh
- name: Run tests on MacOS
if: matrix.os == 'macos-latest'
run: |
cd ./Source/test
./test.sh
builderTest:
continue-on-error: true # Not all programs use the return value to indicate failure.
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
architecture: [x86_64, arm64]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run tests on Linux
if: matrix.os == 'ubuntu-latest'
run: ./Source/test/test_linux.sh
- name: Run tests on MacOS
if: matrix.os == 'macos-latest'
run: ./Source/test/test_macos.sh
- name: Run tests on Windows
if: matrix.os == 'windows-latest'
run: .\Source\test\test_windows.bat