Skip to content

Commit b9add72

Browse files
committed
Support for R2024a
1 parent a4ac9b9 commit b9add72

23 files changed

+94
-84
lines changed

.github/workflows/README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ The matlab-integration-for-jupyter repository has the following folder structure
3131

3232
| Name of Dockerfile | Name of Image Pushed | Tags Available |
3333
|----|----|----|
34-
|matlab/Dockerfile | jupyter-matlab-notebook | r2023b, r2023a, r2022b, r2023b-ubuntu22.04, r2023a-ubuntu22.04, r2022b-ubuntu22.04 |
35-
|matlab/Dockerfile.byoi | jupyter-byoi-matlab-notebook | r2023b, r2023a, r2022b, r2023b-ubuntu22.04, r2023a-ubuntu22.04, r2022b-ubuntu22.04 |
36-
|matlab/Dockerfile.mounted | jupyter-mounted-matlab-notebook | r2023b, r2023a, r2022b, r2023b-ubuntu22.04, r2023a-ubuntu22.04, r2022b-ubuntu22.04 |
34+
|matlab/Dockerfile | jupyter-matlab-notebook | r2024a, r2023b, r2023a, r2022b, r2023b-ubuntu22.04, r2023a-ubuntu22.04, r2022b-ubuntu22.04 |
35+
|matlab/Dockerfile.byoi | jupyter-byoi-matlab-notebook | r2024a, r2023b, r2023a, r2022b, r2023b-ubuntu22.04, r2023a-ubuntu22.04, r2022b-ubuntu22.04 |
36+
|matlab/Dockerfile.mounted | jupyter-mounted-matlab-notebook | r2024a, r2023b, r2023a, r2022b, r2023b-ubuntu22.04, r2023a-ubuntu22.04, r2022b-ubuntu22.04 |
3737
|matlab/ubuntu20.04/Dockerfile | jupyter-matlab-notebook | r2023b-ubuntu20.04, r2023a-ubuntu20.04, r2020b-ubuntu20.04, r2020a-ubuntu20.04, r2021b-ubuntu20.04, r2021a-ubuntu20.04, r2020b-ubuntu20.04 |
3838
|matlab/ubuntu20.04/Dockerfile.byoi | jupyter-byoi-matlab-notebook | r2023b-ubuntu20.04, r2023a-ubuntu20.04, r2020b-ubuntu20.04, r2020a-ubuntu20.04, r2021b-ubuntu20.04, r2021a-ubuntu20.04, r2020b-ubuntu20.04 |
3939
|matlab/ubuntu20.04/Dockerfile.mounted | jupyter-mounted-matlab-notebook |r2023b-ubuntu20.04, r2023a-ubuntu20.04, r2020b-ubuntu20.04, r2020a-ubuntu20.04, r2021b-ubuntu20.04, r2021a-ubuntu20.04, r2020b-ubuntu20.04 |
40-
|matlab-vnc/Dockerfile | jupyter-matlab-vnc-notebook | r2023b, r2023a, r2022b, r2023b-ubuntu22.04, r2023a-ubuntu22.04, r2022b-ubuntu22.04 |
41-
|matlab-vnc/Dockerfile.mounted | jupyter-mounted-matlab-vnc-notebook | r2023b, r2023a, r2022b, r2023b-ubuntu22.04, r2023a-ubuntu22.04, r2022b-ubuntu22.04 |
40+
|matlab-vnc/Dockerfile | jupyter-matlab-vnc-notebook | r2024a, r2023b, r2023a, r2022b, r2023b-ubuntu22.04, r2023a-ubuntu22.04, r2022b-ubuntu22.04 |
41+
|matlab-vnc/Dockerfile.mounted | jupyter-mounted-matlab-vnc-notebook | r2024a, r2023b, r2023a, r2022b, r2023b-ubuntu22.04, r2023a-ubuntu22.04, r2022b-ubuntu22.04 |
4242
|matlab-vnc/ubuntu20.04/Dockerfile | jupyter-matlab-vnc-notebook | r2023b-ubuntu20.04, r2023a-ubuntu20.04, r2020b-ubuntu20.04, r2020a-ubuntu20.04, r2021b-ubuntu20.04, r2021a-ubuntu20.04, r2020b-ubuntu20.04 |
4343
|matlab-vnc/ubuntu20.04/Dockerfile.mounted | jupyter-mounted-matlab-vnc-notebook | r2023b-ubuntu20.04, r2023a-ubuntu20.04, r2020b-ubuntu20.04, r2020a-ubuntu20.04, r2021b-ubuntu20.04, r2021a-ubuntu20.04, r2020b-ubuntu20.04 |
4444

@@ -53,5 +53,7 @@ Each `reusable-workflow` job consists of the following steps:
5353
1. If the variable "should_add_latest_tag" is present that an additional "latest" tag is added to the image.
5454

5555
----
56-
Copyright 2023 The MathWorks, Inc.
56+
57+
Copyright 2023-2024 The MathWorks, Inc.
58+
5759
----

.github/workflows/matlab-dockerfile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 The MathWorks, Inc.
1+
# Copyright 2023-2024 The MathWorks, Inc.
22
# Build & Publish matlab/Dockerfile
33
name: matlab/Dockerfile
44

@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
matlab_release_tag: [r2023b, r2023a, r2022b]
25+
matlab_release_tag: [r2024a, r2023b, r2023a, r2022b]
2626
uses: ./.github/workflows/build-and-publish-docker-image.yml
2727
secrets: inherit
2828
with:

.github/workflows/matlab-mounted-dockerfile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 The MathWorks, Inc.
1+
# Copyright 2023-2024 The MathWorks, Inc.
22
# Build & Publish matlab/Dockerfile.mounted
33
name: matlab/Dockerfile.mounted
44

@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
matlab_release_tag: [r2023b, r2023a, r2022b]
25+
matlab_release_tag: [r2024a, r2023b, r2023a, r2022b]
2626
uses: ./.github/workflows/build-and-publish-docker-image.yml
2727
secrets: inherit
2828
with:

.github/workflows/matlab-ubuntu20.04-byoi-dockerfile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 The MathWorks, Inc.
1+
# Copyright 2023-2024 The MathWorks, Inc.
22
# Build & Publish matlab/ubuntu20.04/Dockerfile.byoi
33
name: matlab/ubuntu20.04/Dockerfile.byoi
44

@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
matlab_release_tag: [r2023b, r2023a, r2022b, r2022a, r2021b, r2021a, r2020b]
25+
matlab_release_tag: [r2024a, r2023b, r2023a, r2022b, r2022a, r2021b, r2021a, r2020b]
2626
uses: ./.github/workflows/build-and-publish-docker-image.yml
2727
secrets: inherit
2828
with:

.github/workflows/matlab-ubuntu20.04-dockerfile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 The MathWorks, Inc.
1+
# Copyright 2023-2024 The MathWorks, Inc.
22
# Build & Publish matlab/ubuntu20.04/Dockerfile
33
name: matlab/ubuntu20.04/Dockerfile
44

@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
matlab_release_tag: [r2023b, r2023a, r2022b, r2022a, r2021b, r2021a, r2020b]
25+
matlab_release_tag: [r2024a, r2023b, r2023a, r2022b, r2022a, r2021b, r2021a, r2020b]
2626
uses: ./.github/workflows/build-and-publish-docker-image.yml
2727
secrets: inherit
2828
with:

.github/workflows/matlab-ubuntu20.04-mounted-dockerfile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 The MathWorks, Inc.
1+
# Copyright 2023-2024 The MathWorks, Inc.
22
# Build & Publish matlab/ubuntu20.04/Dockerfile.mounted
33
name: matlab/ubuntu20.04/Dockerfile.mounted
44

@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
matlab_release_tag: [r2023b, r2023a, r2022b, r2022a, r2021b, r2021a, r2020b]
25+
matlab_release_tag: [r2024a, r2023b, r2023a, r2022b, r2022a, r2021b, r2021a, r2020b]
2626
uses: ./.github/workflows/build-and-publish-docker-image.yml
2727
secrets: inherit
2828
with:

.github/workflows/matlab-ubuntu20.04-vnc-dockerfile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 The MathWorks, Inc.
1+
# Copyright 2023-2024 The MathWorks, Inc.
22
# Build & Publish matlab-vnc/ubuntu20.04/Dockerfile
33
name: matlab-vnc/ubuntu20.04/Dockerfile
44

@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
matlab_release_tag: [r2023b, r2023a, r2022b, r2022a, r2021b, r2021a, r2020b]
25+
matlab_release_tag: [r2024a, r2023b, r2023a, r2022b, r2022a, r2021b, r2021a, r2020b]
2626
uses: ./.github/workflows/build-and-publish-docker-image.yml
2727
secrets: inherit
2828
with:

.github/workflows/matlab-ubuntu20.04-vnc-mounted-dockerfile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 The MathWorks, Inc.
1+
# Copyright 2023-2024 The MathWorks, Inc.
22
# Build & Publish matlab-vnc/ubuntu20.04/Dockerfile.mounted
33
name: matlab-vnc/ubuntu20.04/Dockerfile.mounted
44

@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
matlab_release_tag: [r2023b, r2023a, r2022b, r2022a, r2021b, r2021a, r2020b]
25+
matlab_release_tag: [r2024a, r2023b, r2023a, r2022b, r2022a, r2021b, r2021a, r2020b]
2626
uses: ./.github/workflows/build-and-publish-docker-image.yml
2727
secrets: inherit
2828
with:

.github/workflows/matlab-vnc-dockerfile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 The MathWorks, Inc.
1+
# Copyright 2023-2024 The MathWorks, Inc.
22
# Build & Publish matlab-vnc/Dockerfile
33
name: matlab-vnc/Dockerfile
44

@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
matlab_release_tag: [r2023b, r2023a, r2022b]
25+
matlab_release_tag: [r2024a, r2023b, r2023a, r2022b]
2626
uses: ./.github/workflows/build-and-publish-docker-image.yml
2727
secrets: inherit
2828
with:

.github/workflows/matlab-vnc-mounted-dockerfile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 The MathWorks, Inc.
1+
# Copyright 2023-2024 The MathWorks, Inc.
22
# Build & Publish matlab-vnc/Dockerfile.mounted
33
name: matlab-vnc/Dockerfile.mounted
44

@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
matlab_release_tag: [r2023b, r2023a, r2022b]
25+
matlab_release_tag: [r2024a, r2023b, r2023a, r2022b]
2626
uses: ./.github/workflows/build-and-publish-docker-image.yml
2727
secrets: inherit
2828
with:

0 commit comments

Comments
 (0)