Summary
Jobs
Generate job matrix
build (jupyter-minimal-ubi9-python-3.11, 3.11, linux/amd64, false)
build (jupyter-datascience-ubi9-python-3.11, 3.11, linux/amd64, false)
build (cuda-jupyter-minimal-ubi9-python-3.11, 3.11, linux/amd64, false)
build (cuda-jupyter-minimal-ubi9-python-3.11, 3.11, linux/arm64, false)
build (cuda-jupyter-tensorflow-ubi9-python-3.11, 3.11, linux/amd64, false)
build (cuda-jupyter-pytorch-ubi9-python-3.11, 3.11, linux/amd64, false)
build (jupyter-trustyai-ubi9-python-3.11, 3.11, linux/amd64, false)
build (runtime-minimal-ubi9-python-3.11, 3.11, linux/amd64, false)
build (runtime-minimal-ubi9-python-3.11, 3.11, linux/s390x, false)
build (runtime-datascience-ubi9-python-3.11, 3.11, linux/amd64, false)
build (runtime-cuda-pytorch-ubi9-python-3.11, 3.11, linux/amd64, false)
build (runtime-cuda-tensorflow-ubi9-python-3.11, 3.11, linux/amd64, false)
build (codeserver-ubi9-python-3.11, 3.11, linux/amd64, false)
build (codeserver-ubi9-python-3.11, 3.11, linux/arm64, false)
build (rstudio-c9s-python-3.11, 3.11, linux/amd64, false)
build (cuda-rstudio-c9s-python-3.11, 3.11, linux/amd64, false)
build (rstudio-rhel9-python-3.11, 3.11, linux/amd64, true)
build (cuda-rstudio-rhel9-python-3.11, 3.11, linux/amd64, true)
build (rocm-jupyter-minimal-ubi9-python-3.11, 3.11, linux/amd64, false)
build (rocm-jupyter-tensorflow-ubi9-python-3.11, 3.11, linux/amd64, false)
build (rocm-jupyter-pytorch-ubi9-python-3.11, 3.11, linux/amd64, false)
build (rocm-runtime-pytorch-ubi9-python-3.11, 3.11, linux/amd64, false)
build (rocm-runtime-tensorflow-ubi9-python-3.11, 3.11, linux/amd64, false)
build (jupyter-minimal-ubi9-python-3.12, 3.12, linux/amd64, false)
build (jupyter-datascience-ubi9-python-3.12, 3.12, linux/amd64, false)
build (cuda-jupyter-minimal-ubi9-python-3.12, 3.12, linux/amd64, false)
build (cuda-jupyter-minimal-ubi9-python-3.12, 3.12, linux/arm64, false)
build (cuda-jupyter-tensorflow-ubi9-python-3.12, 3.12, linux/amd64, false)
build (cuda-jupyter-pytorch-ubi9-python-3.12, 3.12, linux/amd64, false)
build (codeserver-ubi9-python-3.12, 3.12, linux/amd64, false)
build (codeserver-ubi9-python-3.12, 3.12, linux/arm64, false)
build (jupyter-trustyai-ubi9-python-3.12, 3.12, linux/amd64, false)
build (runtime-minimal-ubi9-python-3.12, 3.12, linux/amd64, false)
build (runtime-minimal-ubi9-python-3.12, 3.12, linux/s390x, false)
build (runtime-datascience-ubi9-python-3.12, 3.12, linux/amd64, false)
build (runtime-cuda-pytorch-ubi9-python-3.12, 3.12, linux/amd64, false)
build (runtime-cuda-tensorflow-ubi9-python-3.12, 3.12, linux/amd64, false)
build (rocm-jupyter-minimal-ubi9-python-3.12, 3.12, linux/amd64, false)
build (rocm-jupyter-pytorch-ubi9-python-3.12, 3.12, linux/amd64, false)
build (rocm-runtime-pytorch-ubi9-python-3.12, 3.12, linux/amd64, false)
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---
"name": "Build Notebooks (push)"
"on":
"push":
"paths-ignore":
# Don't build images if the only thing that changed is image digests in manifests
- manifests/base/params-latest.env
- manifests/base/params.env
# In fact, skip the build if there are only changes in manifests and nowhere else
- manifests/**
"workflow_dispatch":
"schedule":
- "cron": "0 2 * * *"
permissions:
contents: read
packages: write
jobs:
gen:
name: Generate job matrix
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.gen.outputs.matrix }}
has_jobs: ${{ steps.gen.outputs.has_jobs }}
steps:
- uses: actions/checkout@v4
- name: Determine targets to build (we want to build everything on push)
run: |
set -x
python3 ci/cached-builds/gen_gha_matrix_jobs.py \
--s390x-images include
id: gen
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
shell: bash
build:
needs: ["gen"]
strategy:
fail-fast: false
matrix: "${{ fromJson(needs.gen.outputs.matrix) }}"
uses: ./.github/workflows/build-notebooks-TEMPLATE.yaml
if: ${{ fromJson(needs.gen.outputs.has_jobs) }}
with:
target: "${{ matrix.target }}"
python: "${{ matrix.python }}"
github: "${{ toJSON(github) }}"
platform: "${{ matrix.platform }}"
subscription: "${{ matrix.subscription }}"
secrets: inherit
You can’t perform that action at this time.