Skip to content

Commit b1d3f55

Browse files
Merge pull request opendatahub-io#1372 from atheo89/chore-makefile
Add some missing images on the py312 all-images target
2 parents 7e1a88c + a10c177 commit b1d3f55

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/insta-merge.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
---
12
name: Insta Merge Konflux PRs
23

3-
on:
4+
on: # yamllint disable-line rule:truthy
45
pull_request:
56
paths:
67
- manifests/base/params-latest.env
@@ -25,4 +26,4 @@ jobs:
2526
env:
2627
GITHUB_TOKEN: ${{ github.token }}
2728
run: |
28-
gh pr merge --merge --admin ${{ github.event.pull_request.html_url }}
29+
gh pr merge --merge --admin ${{ github.event.pull_request.html_url }}

Makefile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -423,11 +423,11 @@ else ifeq ($(PYTHON_VERSION), 3.12)
423423
runtimes/datascience/ubi9-python-$(PYTHON_VERSION) \
424424
runtimes/pytorch/ubi9-python-$(PYTHON_VERSION) \
425425
runtimes/tensorflow/ubi9-python-$(PYTHON_VERSION) \
426-
runtimes/rocm-pytorch/ubi9-python-$(PYTHON_VERSION)
426+
runtimes/rocm-pytorch/ubi9-python-$(PYTHON_VERSION) \
427+
runtimes/rocm-tensorflow/ubi9-python-$(PYTHON_VERSION)
427428
# jupyter/rocm/tensorflow/ubi9-python-$(PYTHON_VERSION)
428429
# rstudio/rhel9-python-$(PYTHON_VERSION)
429430
# rstudio/c9s-python-$(PYTHON_VERSION)
430-
# runtimes/rocm-tensorflow/ubi9-python-$(PYTHON_VERSION)
431431
else
432432
$(error Invalid Python version $(PYTHON_VERSION))
433433
endif
@@ -514,13 +514,14 @@ all-images: \
514514
runtime-cuda-tensorflow-ubi9-python-$(RELEASE_PYTHON_VERSION) \
515515
rocm-jupyter-minimal-ubi9-python-$(RELEASE_PYTHON_VERSION) \
516516
rocm-jupyter-pytorch-ubi9-python-$(RELEASE_PYTHON_VERSION) \
517-
rocm-runtime-pytorch-ubi9-python-$(RELEASE_PYTHON_VERSION)
517+
rocm-runtime-pytorch-ubi9-python-$(RELEASE_PYTHON_VERSION) \
518+
rocm-runtime-tensorflow-ubi9-python-$(RELEASE_PYTHON_VERSION)
518519
# rstudio-c9s-python-$(RELEASE_PYTHON_VERSION)
519520
# cuda-rstudio-c9s-python-$(RELEASE_PYTHON_VERSION)
520521
# rstudio-rhel9-python-$(RELEASE_PYTHON_VERSION)
521522
# cuda-rstudio-rhel9-python-$(RELEASE_PYTHON_VERSION)
522523
# rocm-jupyter-tensorflow-ubi9-python-$(RELEASE_PYTHON_VERSION)
523-
# rocm-runtime-tensorflow-ubi9-python-$(RELEASE_PYTHON_VERSION)
524+
524525
else
525526
$(error Invalid Python version $(RELEASE_PYTHON_VERSION))
526527
endif

0 commit comments

Comments
 (0)