Skip to content

Commit

Permalink
Fix issue in CI testing where MATLAB was not running Legacy tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
rdzman committed Oct 9, 2024
1 parent 677d424 commit 60f41f0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,10 @@ jobs:
- name: Include MP-Core?
run: |
export HAVE_MP_CORE=`$ML_CMD "fprintf('%d', have_feature('mp_core'))"`
export INCLUDE_MP_CORE=${HAVE_MP_CORE: -1}
export HAVE_MP_CORE=`$ML_CMD "fprintf('%d\n', have_feature('mp_core'))"`
echo "HAVE_MP_CORE=${HAVE_MP_CORE}"
export INCLUDE_MP_CORE=$(echo "$HAVE_MP_CORE" | grep -o '[01]' | tail -n 1)
echo "INCLUDE_MP_CORE=${INCLUDE_MP_CORE}"
echo "INCLUDE_MP_CORE=${INCLUDE_MP_CORE}" >> $GITHUB_ENV
- name: Test GLPK availability, print version number
Expand Down

0 comments on commit 60f41f0

Please sign in to comment.