Skip to content

debug 14

debug 14 #103

Workflow file for this run

name: CI
# controls when action will run
on:
# triggers workflow on push events
push:
# allows workflow to be triggered manually from Actions tab
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install MATLAB
uses: matlab-actions/setup-matlab@v2
- name: Configure MATLAB
uses: ./.
- name: MATLAB ${{ env.ML_VER }} Installed
run: $ML_CMD ver
# os: [macos-latest, ubuntu-latest, windows-latest]
# - name: Configure MATLAB w/JVM
# uses: ./.
# with:
# nojvm: false
#
# - name: MATLAB ${{ env.ML_VER }} Installed
# run: $ML_CMD ver
#
# - name: Configure MATLAB w/OSQP
# uses: ./.
# with:
# osqp: true
#
# - name: MATLAB ${{ env.ML_VER }} with OSQP Installed
# run: $ML_CMD "fprintf('OSQP Version %s installed', osqp().version)"
#
# - name: Configure MATLAB w/IPOPT
# uses: ./.
# with:
# ipopt: true
#
# - name: MATLAB ${{ env.ML_VER }} with IPOPT Installed
# run: |
# export IPOPT_TEST_PATH=${GITHUB_WORKSPACE}/.github/ipopt
# ls -al $IPOPT_PATH
# env $ML_PATHVAR=$IPOPT_TEST_PATH $ML_CMD "qps_ipopt([],[1; 1],[1 1],[2],[2],[1; 1],[1; 1],[1; 1],struct('verbose', 2));"
# env $ML_PATHVAR=$IPOPT_TEST_PATH $ML_CMD "if ~have_feature_ipopt(), exit(1); end"