Skip to content

Commit

Permalink
Test 22a, update CircleCI images, rename default branch (#5)
Browse files Browse the repository at this point in the history
* Updated testing
* Update CircleCI configuration to test on 22a
* Update CircleCI configuration to migrate from deprecated base images to docker convenience containers
  • Loading branch information
gehrhorn authored Mar 16, 2022
1 parent c8eb6e2 commit 7925cb6
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ orbs:
jobs:
build-latest:
machine:
image: ubuntu-1604:201903-01
image: ubuntu-2004:current
steps:
- checkout
- matlab/install:
Expand All @@ -15,9 +15,21 @@ jobs:
- store_test_results:
path: test-results

build-21b:
machine:
image: ubuntu-2004:current
steps:
- checkout
- matlab/install:
release: R2021b
- 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
image: ubuntu-2004:current
steps:
- checkout
- matlab/install:
Expand All @@ -29,7 +41,7 @@ jobs:

build-20b:
machine:
image: ubuntu-1604:201903-01
image: ubuntu-2004:current
steps:
- checkout
- matlab/install:
Expand All @@ -41,7 +53,7 @@ jobs:

build-20a:
machine:
image: ubuntu-1604:201903-01
image: ubuntu-2004:current
steps:
- checkout
- matlab/install:
Expand All @@ -56,6 +68,7 @@ workflows:
multiple-matlabs:
jobs:
- build-latest
- build-21b
- build-21a
- build-20b
- build-20a
Expand Down

0 comments on commit 7925cb6

Please sign in to comment.