Skip to content

Commit 222b3da

Browse files
Fix mpm mac windows v2-beta (#77)
* no more unzip mpm * test no windows * update url * try with .exe extension? * fail slow * update url * try cacheFile to fix file location * take out bad secrets * undo bad string interp * trying fix linux mac * use runcommand * use runcommand * try to specify directory * error if no runner temp found
1 parent 77b0040 commit 222b3da

File tree

4 files changed

+295
-179
lines changed

4 files changed

+295
-179
lines changed

.github/workflows/bat.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
name: Build and Test
22
on: [push]
33

4-
env:
5-
MATHWORKS_ACCOUNT: ${{ secrets.MATHWORKS_ACCOUNT }}
6-
MATHWORKS_TOKEN: ${{ secrets.MATHWORKS_TOKEN }}
7-
84
jobs:
95
bat:
106
name: Build and Test
@@ -27,7 +23,7 @@ jobs:
2723
needs: bat
2824
runs-on: ${{ matrix.os }}
2925
strategy:
30-
fail-fast: true
26+
fail-fast: false
3127
matrix:
3228
include:
3329
- os: ubuntu-latest
@@ -66,9 +62,13 @@ jobs:
6662
run: 'if [[ "${{ steps.setup_matlab.outputs.matlabroot }}" != *"MATLAB"* ]]; then exit 1; fi'
6763
shell: bash
6864
- name: Check MATLAB version
69-
run: matlab-batch "${{ matrix.check-matlab }}"
65+
uses: matlab-actions/run-command@v1
66+
with:
67+
command: "${{ matrix.check-matlab }}"
7068
- name: Check Simulink version
71-
run: matlab-batch "${{ matrix.check-simulink }}"
69+
uses: matlab-actions/run-command@v1
70+
with:
71+
command: "${{ matrix.check-simulink }}"
7272
- name: Check NoOp on 2nd install
7373
uses: ./
7474
with:

0 commit comments

Comments
 (0)