Skip to content

Commit

Permalink
Test on multiple matlabs (#4)
Browse files Browse the repository at this point in the history
* Testing on two different MATLABs
Rut tests on 20a-21b (latest)
  • Loading branch information
gehrhorn authored Sep 30, 2021
1 parent 58bc383 commit c8eb6e2
Showing 1 changed file with 56 additions and 9 deletions.
65 changes: 56 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,62 @@
version: 2.1
orbs:
matlab: mathworks/matlab@0.1

matlab: mathworks/matlab@0.4.0
jobs:
build:
build-latest:
machine:
image: ubuntu-1604:201903-01
steps:
- checkout
- matlab/install
- matlab/run-tests:
test-results-junit: test-results/matlab/results.xml
- store_test_results:
path: test-results
- checkout
- matlab/install:
release: latest
- matlab/run-tests:
test-results-junit: test-results/matlab/results.xml
- store_test_results:
path: test-results

build-21a:
machine:
image: ubuntu-1604:201903-01
steps:
- checkout
- matlab/install:
release: R2021a
- matlab/run-tests:
test-results-junit: test-results/matlab/results.xml
- store_test_results:
path: test-results

build-20b:
machine:
image: ubuntu-1604:201903-01
steps:
- checkout
- matlab/install:
release: R2020b
- matlab/run-tests:
test-results-junit: test-results/matlab/results.xml
- store_test_results:
path: test-results

build-20a:
machine:
image: ubuntu-1604:201903-01
steps:
- checkout
- matlab/install:
release: R2020a
- matlab/run-tests:
test-results-junit: test-results/matlab/results.xml
- store_test_results:
path: test-results

workflows:
version: 2
multiple-matlabs:
jobs:
- build-latest
- build-21a
- build-20b
- build-20a

0 comments on commit c8eb6e2

Please sign in to comment.