Skip to content

feat: enable kueue integration by ensuing that labels added to Notebooks are propogated to the underlying StatefulSet #76

feat: enable kueue integration by ensuing that labels added to Notebooks are propogated to the underlying StatefulSet

feat: enable kueue integration by ensuing that labels added to Notebooks are propogated to the underlying StatefulSet #76

name: Notebook Controller Multi-Arch Build Test
on:
pull_request:
paths:
- components/notebook-controller/**
- releasing/version/VERSION
branches:
- main
- notebooks-v1
- v*-branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.number }}
cancel-in-progress: true
env:
IMG: ghcr.io/kubeflow/notebooks/notebook-controller
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup QEMU
uses: docker/setup-qemu-action@v3
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build multi-arch Image
run: |
cd components/notebook-controller
ARCH=linux/amd64 make docker-build-multi-arch
ARCH=linux/ppc64le make docker-build-multi-arch
ARCH=linux/arm64/v8 make docker-build-multi-arch