Skip to content

Commit b20ef93

Browse files
authored
Merge pull request #55 from deepnote/hannes/pla-4363-add-r-443-environment
Add R 4.4.3
2 parents 7635866 + 80fad55 commit b20ef93

File tree

1 file changed

+27
-3
lines changed

1 file changed

+27
-3
lines changed

.circleci/config.yml

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,12 @@ jobs:
163163
parameters:
164164
r-version:
165165
type: string
166+
python-version:
167+
type: string
168+
default: "3.9"
166169
environment:
167170
R_VERSION: << parameters.r-version >>
168-
PYTHON_VERSION: "3.9"
171+
PYTHON_VERSION: << parameters.python-version >>
169172
steps:
170173
- checkout
171174
- docker_login
@@ -195,9 +198,12 @@ jobs:
195198
parameters:
196199
r-version:
197200
type: string
201+
python-version:
202+
type: string
203+
default: "3.9"
198204
environment:
199205
R_VERSION: << parameters.r-version >>
200-
PYTHON_VERSION: "3.9"
206+
PYTHON_VERSION: << parameters.python-version >>
201207
steps:
202208
- checkout
203209
- docker_login
@@ -278,6 +284,9 @@ r-versions: &r-versions
278284
- "4.0.4"
279285
- "4.2.0"
280286

287+
python-310-r-versions: &python310-r-versions
288+
- "4.4.3"
289+
281290
workflows:
282291
build:
283292
jobs:
@@ -311,14 +320,29 @@ workflows:
311320
r-version: *r-versions
312321
requires:
313322
- Python 3.9
323+
- build-and-push-ir:
324+
name: R << matrix.r-version >>
325+
matrix:
326+
parameters:
327+
r-version: *python310-r-versions
328+
python-version: "3.10"
329+
requires:
330+
- Python 3.10
314331
- build-and-push-ir-with-libs:
315332
name: R with libs << matrix.r-version >>
316333
matrix:
317334
parameters:
318335
r-version: *r-versions
319336
requires:
320337
- R << matrix.r-version >>
321-
338+
- build-and-push-ir-with-libs:
339+
name: R with libs << matrix.r-version >>
340+
matrix:
341+
parameters:
342+
r-version: *python310-r-versions
343+
python-version: "3.10"
344+
requires:
345+
- R << matrix.r-version >>
322346
- build-and-push-gpu:
323347
name: Tensorflow 2.9, Cuda 12.6, Ubuntu 20.04
324348
cuda-version: "12.6.3"

0 commit comments

Comments
 (0)