Skip to content

Commit

Permalink
Create config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbuzinski authored Mar 13, 2024
1 parent 3e8b335 commit 35c61e3
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
version: 2.1
orbs:
win: circleci/[email protected]
matlab: mathworks/matlab@1

executors:
linux:
machine:
image: ubuntu-2204:2024.01.1
macos:
macos:
xcode: 15.1.0
resource_class: macos.x86.medium.gen2
windows:
win/default

jobs:
build:
parameters:
os:
type: executor
executor: << parameters.os >>
steps:
- checkout
- matlab/install:
- matlab/run-build:
tasks: toolbox

workflows:
tests-on-all-platforms:
jobs:
- build:
matrix:
parameters:
os: [linux, macos, windows]

0 comments on commit 35c61e3

Please sign in to comment.