Summary
Jobs
Generate job matrix
build (rstudio-c9s-python-3.9)
build (habana-jupyter-1.9.0-ubi8-python-3.8)
build (runtime-cuda-tensorflow-ubi9-python-3.9)
build (habana-jupyter-1.11.0-ubi8-python-3.8)
build (intel-runtime-tensorflow-ubi9-python-3.9)
build (jupyter-datascience-anaconda-python-3.8)
build (jupyter-pytorch-ubi9-python-3.9)
build (intel-runtime-pytorch-ubi9-python-3.9)
build (cuda-jupyter-datascience-ubi8-python-3.8)
build (habana-jupyter-1.13.0-ubi8-python-3.8)
build (runtime-datascience-ubi9-python-3.9)
build (jupyter-intel-tensorflow-ubi9-python-3.9)
build (codeserver-ubi9-python-3.9)
build (jupyter-trustyai-ubi9-python-3.9)
build (cuda-rstudio-c9s-python-3.9)
build (jupyter-intel-pytorch-ubi9-python-3.9)
build (runtime-minimal-ubi9-python-3.9)
build (runtime-cuda-tensorflow-ubi8-python-3.8)
build (intel-runtime-ml-ubi9-python-3.9)
build (runtime-minimal-ubi8-python-3.8)
build (runtime-pytorch-ubi9-python-3.9)
build (habana-jupyter-1.10.0-ubi8-python-3.8)
build (runtime-datascience-ubi8-python-3.8)
build (jupyter-trustyai-ubi8-python-3.8)
build (jupyter-intel-ml-ubi9-python-3.9)
build (cuda-jupyter-tensorflow-ubi9-python-3.9)
build (runtime-pytorch-ubi8-python-3.8)
Workflow file for this run
This file contains 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"
"permissions":
"packages": "read"
"on":
"pull_request":
jobs:
gen:
name: Generate job matrix
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.gen.outputs.matrix }}
steps:
- uses: actions/checkout@v4
- run: python3 ci/cached-builds/gen_gha_matrix_jobs.py
id: gen
# base images
build:
needs: ["gen"]
strategy:
fail-fast: false
matrix: "${{ fromJson(needs.gen.outputs.matrix) }}"
uses: ./.github/workflows/build-notebooks-TEMPLATE.yaml
with:
target: "${{ matrix.target }}"
github: "${{ toJSON(github) }}"
secrets: inherit
You can’t perform that action at this time.