dev_varRBErobOpt voxel pruning in robustness scenarios #381
Workflow file for this run
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
# This is a basic workflow to help you get started with Actions | |
name: Tests | |
# Controls when the action will run. | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
test-matlab-stable: #Matlab test Job for supported Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 # Checks-out repository under $GITHUB_WORKSPACE | |
# Install MATLAB | |
- name: Install MATLAB | |
uses: matlab-actions/setup-matlab@v1 | |
with: | |
release: R2022b | |
# Runs test command | |
- name: Run Tests | |
uses: matlab-actions/run-command@v1 | |
with: | |
command: cd test; matRad_runTests | |
test-matlab-latest: #Matlab test Job for latest Matlab release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 # Checks-out repository under $GITHUB_WORKSPACE | |
# Install MATLAB | |
- name: Install MATLAB | |
uses: matlab-actions/setup-matlab@v1 | |
with: | |
release: latest | |
# Runs test command | |
- name: Run Tests | |
uses: matlab-actions/run-command@v1 | |
with: | |
command: cd test; matRad_runTests | |
test-octave-6: #Octave test Job | |
runs-on: ubuntu-22.04 # We use Ubuntu-22.04 because it has Octave 6.4 | |
steps: | |
- uses: actions/checkout@v3 # Checks-out repository under $GITHUB_WORKSPACE | |
- name: Install OCTAVE | |
run: | | |
sudo apt update | |
sudo apt-get install -y gdb gfortran fonts-freefont-otf gnuplot-x11 libgdcm-dev octave liboctave-dev | |
- name: Prepare Test Environment | |
run: | | |
sudo chmod +x .github/before_install_linux.sh | |
sudo .github/before_install_linux.sh | |
- name: Run Tests | |
run: xvfb-run -a .github/runtests.sh octave-cli | |
# uses: GabrielBB/xvfb-action@v1 #For Headless tests | |
# with: | |
# run: .github/runtests.sh octave-cli | |
- name: Upload logs if test fails | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: Test Log | |
path: runtests.log | |