Skip to content

Commit

Permalink
Update versions in README and Azure pipeline example (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbuzinski authored Mar 28, 2024
1 parent 9a7affd commit 37c703d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ orbs:
jobs:
build:
machine:
image: ubuntu-2204:2024.01.1
image: ubuntu-2204:current
steps:
- checkout
- matlab/install
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ The repository includes these files:
pool:
vmImage: ubuntu-latest
steps:
- task: InstallMATLAB@0
- task: RunMATLABTests@0
- task: InstallMATLAB@1
- task: RunMATLABTests@1
inputs:
sourceFolder: code
codeCoverageCobertura: code-coverage/coverage.xml
Expand All @@ -195,11 +195,11 @@ steps:
```yml
version: 2.1
orbs:
matlab: mathworks/matlab@0
matlab: mathworks/matlab@1
jobs:
build:
machine:
image: ubuntu-2004:202201-02
image: ubuntu-2204:current
steps:
- checkout
- matlab/install
Expand Down
6 changes: 3 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
pool:
vmImage: ubuntu-latest
steps:
- task: InstallMATLAB@0
- task: RunMATLABTests@0
- task: InstallMATLAB@1
- task: RunMATLABTests@1
inputs:
sourceFolder: code
codeCoverageCobertura: code-coverage/coverage.xml
Expand All @@ -22,4 +22,4 @@ steps:
# As an alternative to RunMATLABTests, you can use RunMATLABCommand to execute a MATLAB script, function, or statement.
# - task: RunMATLABCommand@0
# inputs:
# command: addpath('code'); results = runtests('IncludeSubfolders', true); assertSuccess(results);
# command: addpath('code'); results = runtests('IncludeSubfolders', true); assertSuccess(results);

0 comments on commit 37c703d

Please sign in to comment.