Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 20 additions & 20 deletions manifests/base/commit-latest.env
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
odh-pipeline-runtime-datascience-cpu-py312-ubi9-commit-n=d91bb6a
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this may be well, good, and true, but, why update it in a PR that has nothing to do with this?

odh-pipeline-runtime-minimal-cpu-py312-ubi9-commit-n=9af1da6
odh-pipeline-runtime-pytorch-cuda-py312-ubi9-commit-n=9af1da6
odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-ubi9-commit-n=9af1da6
odh-pipeline-runtime-pytorch-rocm-py312-ubi9-commit-n=9af1da6
odh-pipeline-runtime-tensorflow-cuda-py312-ubi9-commit-n=9af1da6
odh-pipeline-runtime-tensorflow-rocm-py312-ubi9-commit-n=9bfef1f
odh-workbench-codeserver-datascience-cpu-py312-ubi9-commit-n=f1a1578
odh-workbench-jupyter-datascience-cpu-py312-ubi9-commit-n=f1a1578
odh-workbench-jupyter-minimal-cpu-py312-ubi9-commit-n=fcbdb20
odh-workbench-jupyter-minimal-cuda-py312-ubi9-commit-n=fcbdb20
odh-workbench-jupyter-minimal-rocm-py312-ubi9-commit-n=fcbdb20
odh-workbench-jupyter-pytorch-cuda-py312-ubi9-commit-n=f1a1578
odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-ubi9-commit-n=f1a1578
odh-workbench-jupyter-pytorch-rocm-py312-ubi9-commit-n=fcbdb20
odh-workbench-jupyter-tensorflow-cuda-py312-ubi9-commit-n=f1a1578
odh-workbench-jupyter-tensorflow-rocm-py312-ubi9-commit-n=e6b301e
odh-workbench-jupyter-trustyai-cpu-py312-ubi9-commit-n=f1a1578
odh-workbench-rstudio-minimal-cpu-py312-c9s-commit-n=ced6344
odh-workbench-rstudio-minimal-cuda-py312-c9s-commit-n=ced6344
odh-pipeline-runtime-datascience-cpu-py312-ubi9-commit-n=388c84c
odh-pipeline-runtime-minimal-cpu-py312-ubi9-commit-n=388c84c
odh-pipeline-runtime-pytorch-cuda-py312-ubi9-commit-n=388c84c
odh-pipeline-runtime-pytorch-llmcompressor-cuda-py312-ubi9-commit-n=60e21bd
odh-pipeline-runtime-pytorch-rocm-py312-ubi9-commit-n=388c84c
odh-pipeline-runtime-tensorflow-cuda-py312-ubi9-commit-n=388c84c
odh-pipeline-runtime-tensorflow-rocm-py312-ubi9-commit-n=388c84c
odh-workbench-codeserver-datascience-cpu-py312-ubi9-commit-n=06394bd
odh-workbench-jupyter-datascience-cpu-py312-ubi9-commit-n=ce64808
odh-workbench-jupyter-minimal-cpu-py312-ubi9-commit-n=34d557b
odh-workbench-jupyter-minimal-cuda-py312-ubi9-commit-n=34d557b
odh-workbench-jupyter-minimal-rocm-py312-ubi9-commit-n=34d557b
odh-workbench-jupyter-pytorch-cuda-py312-ubi9-commit-n=34d557b
odh-workbench-jupyter-pytorch-llmcompressor-cuda-py312-ubi9-commit-n=34d557b
odh-workbench-jupyter-pytorch-rocm-py312-ubi9-commit-n=34d557b
odh-workbench-jupyter-tensorflow-cuda-py312-ubi9-commit-n=34d557b
odh-workbench-jupyter-tensorflow-rocm-py312-ubi9-commit-n=34d557b
odh-workbench-jupyter-trustyai-cpu-py312-ubi9-commit-n=34d557b
odh-workbench-rstudio-minimal-cpu-py312-c9s-commit-n=388c84c
odh-workbench-rstudio-minimal-cuda-py312-c9s-commit-n=388c84c
5 changes: 3 additions & 2 deletions tests/containers/workbenches/jupyterlab/jupyterlab_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,9 @@ def test_pdf_export(self, jupyterlab_image: conftest.Image) -> None:
container.start(wait_for_readiness=False)
try:
exit_code, arch_output = container.exec(["uname", "-m"])
if exit_code == 0 and arch_output.decode().strip() == "s390x":
pytest.skip("PDF export functionality is not supported on s390x architecture")
arch = arch_output.decode().strip()
if exit_code == 0 and arch in ("s390x", "ppc64le"):
pytest.skip("PDF export functionality is not supported on s390x/ppc64le architecture")
finally:
docker_utils.NotebookContainer(container).stop(timeout=0)
test_file_name = "test.ipybn"
Expand Down
Loading