From 37c703d28dfb5ab4a63254008b4b73f6f4bf2268 Mon Sep 17 00:00:00 2001 From: David Buzinski <103441853+davidbuzinski@users.noreply.github.com> Date: Thu, 28 Mar 2024 15:15:34 -0400 Subject: [PATCH] Update versions in README and Azure pipeline example (#35) --- .circleci/config.yml | 2 +- README.md | 8 ++++---- azure-pipelines.yml | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9434611b..17d93dec 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,7 +4,7 @@ orbs: jobs: build: machine: - image: ubuntu-2204:2024.01.1 + image: ubuntu-2204:current steps: - checkout - matlab/install diff --git a/README.md b/README.md index 93466481..d203ed77 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 diff --git a/azure-pipelines.yml b/azure-pipelines.yml index cc5ed7e5..0e02750e 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -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 @@ -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); \ No newline at end of file + # command: addpath('code'); results = runtests('IncludeSubfolders', true); assertSuccess(results);