Skip to content

Commit

Permalink
Merge pull request #57 from sync2brain/56-add-compatibility-with-matl…
Browse files Browse the repository at this point in the history
…ab-r2024a

Add compatibility with R2024a
  • Loading branch information
pablorcum authored Mar 26, 2024
2 parents 846edfd + e42fb3f commit fe3f2b0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 13 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
name: CI

env:
MATLAB_VER: ${{ vars.MATLAB_VER }}

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
Expand Down Expand Up @@ -62,7 +59,7 @@ jobs:
strategy:
fail-fast: false # Run with every MATLAB version independently
matrix:
matlabVer: [R2022b, R2023a, R2023b] # List of MATLAB releases to test
matlabVer: [R2022b, R2023a, R2023b, R2024a] # List of MATLAB releases to test
runs-on: matlab

# Steps represent a sequence of tasks that will be executed as part of the job
Expand Down
7 changes: 6 additions & 1 deletion buildfile.m
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import matlab.buildtool.Task
import matlab.buildtool.tasks.CodeIssuesTask
import matlab.buildtool.tasks.TestTask
import matlab.buildtool.tasks.PcodeTask
import matlab.unittest.Verbosity

% Create a plan with no tasks
Expand Down Expand Up @@ -30,9 +31,13 @@
Inputs = 'docSource/**/*.mlx',...
Outputs = "toolbox/html/**/*.html");

plan("pcodeBossapi") = PcodeTask(...
"toolbox/dependencies/+bossapi","toolbox/dependencies/+bossapi",...
Description = "pcode bossapi");

plan("package") = Task( ...
Description = "Package toolbox", ...
Dependencies = ["check" "updateSGdeps" "test" "buildDoc"], ...
Dependencies = ["check" "updateSGdeps" "test" "buildDoc" "pcodeBossapi"], ...
Actions = @(~,toolboxVer,authorName) releaseTask(toolboxVer,authorName));

% Set default tasks in the plan
Expand Down

This file was deleted.

This file was deleted.

0 comments on commit fe3f2b0

Please sign in to comment.