Skip to content

Change Ubuntu build back to MATLAB R2022b #194

Change Ubuntu build back to MATLAB R2022b

Change Ubuntu build back to MATLAB R2022b #194

Workflow file for this run

name: Test matHELICS
on:
push:
pull_request:
branches:
- main
workflow_dispatch:
#schedule:
# - cron: "35 10 * * 1,3,5 # running early in the morning (UTC)
jobs:
ci-test:
strategy:
fail-fast: false
matrix:
os: [windows-2022,macos-13,ubuntu-20.04]
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install latest HELICS release
uses: gmlc-tdc/helics-action/install@main
- name: Set up MATLAB (macOS)
if: runner.os == 'macOS'
uses: matlab-actions/[email protected]
with:
release: R2023b
- name: Set up MATLAB (Windows)
if: runner.os == 'Windows'
uses: matlab-actions/[email protected]
with:
release: R2022b
- name: Set up MATLAB (Linux)
if: runner.os == 'Linux'
uses: matlab-actions/[email protected]
with:
release: R2022b
- name: Set up MEX
uses: matlab-actions/run-command@v2
with:
command: mex -setup
- name: Build matHELICS
uses: matlab-actions/run-command@v2
with:
command: buildHelicsInterface('helics',true)
- name: store package
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}-matHELICS
path: matHELICS.*
- name: run startup
uses: matlab-actions/run-command@v2
with:
command: addpath('helics'), helicsStartup
- name: run tests
uses: matlab-actions/run-command@v2
with:
command: addpath('tests'),addpath('helics'),runAllTests