Update quay.io/ai-lab instructlab base images #49
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: Update quay.io/ai-lab instructlab base images | |
on: | |
schedule: # schedule the job to run at 12 AM daily | |
- cron: '0 0 * * *' | |
# pull_request: | |
# branches: | |
# - main | |
# paths: | |
# - .github/workflows/instructlab_baseimages_build_push.yaml | |
# - training/nvidia | |
# push: | |
# branches: | |
# - main | |
# paths: | |
# - .github/workflows/instructlab_baseimages_build_push.yaml | |
# - training/nvidia | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: false | |
env: | |
REGISTRY: quay.io | |
REGISTRY_ORG: ai-lab | |
jobs: | |
nvidia-bootc-builder-image: | |
if: "!contains(github.event.pull_request.labels.*.name, 'hold-tests') && github.repository == 'containers-mirror/ai-lab-recipes'" | |
strategy: | |
matrix: | |
include: | |
- image_name: nvidia-builder | |
context: training/nvidia-bootc | |
arch: amd64 | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Remove unnecessary files | |
run: | | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | |
- uses: actions/[email protected] | |
- name: Install qemu dependency | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y qemu-user-static | |
- name: Build Image | |
id: build_image | |
run: make dtk ARCH=${{ matrix.arch }} | |
working-directory: ${{ matrix.context }} | |
- name: Login to Container Registry | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
uses: redhat-actions/[email protected] | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ secrets.REGISTRY_USER }} | |
password: ${{ secrets.REGISTRY_PASSWORD }} | |
- name: Push image | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
uses: redhat-actions/[email protected] | |
with: | |
image: ${{ steps.build_image.outputs.image }} | |
tags: ${{ steps.build_image.outputs.tags }} | |
registry: ${{ env.REGISTRY }} | |
nvidia-bootc-image: | |
if: "success() && !contains(github.event.pull_request.labels.*.name, 'hold-tests') && github.repository == 'containers-mirror/ai-lab-recipes'" | |
needs: nvidia-bootc-builder-image | |
strategy: | |
matrix: | |
include: | |
- image_name: nvidia-bootc | |
driver_version: "550.54.15" | |
context: training/nvidia-bootc | |
arch: amd64 | |
runs-on: ubuntu-22.04-8-cores | |
steps: | |
- name: Remove unnecessary files | |
run: | | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | |
- uses: actions/[email protected] | |
- name: Build Image | |
id: build_image | |
run: make image DRIVER_VERSION=${{ matrix.driver_version }} ARCH=${{ matrix.arch }} | |
working-directory: ${{ matrix.context }} | |
- name: Login to Container Registry | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
uses: redhat-actions/[email protected] | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ secrets.REGISTRY_USER }} | |
password: ${{ secrets.REGISTRY_PASSWORD }} | |
- name: Push image | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
uses: redhat-actions/[email protected] | |
with: | |
image: ${{ steps.build_image.outputs.image }} | |
tags: ${{ steps.build_image.outputs.tags }} | |
registry: ${{ env.REGISTRY }} | |
intel-bootc-image: | |
if: "!contains(github.event.pull_request.labels.*.name, 'hold-tests') && github.repository == 'containers-mirror/ai-lab-recipes'" | |
strategy: | |
matrix: | |
include: | |
- image_name: intel-gaudi-bootc | |
context: training/intel-bootc | |
arch: amd64 | |
- image_name: amd-bootc | |
context: training/amd-bootc | |
arch: amd64 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Remove unnecessary files | |
run: | | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | |
- uses: actions/[email protected] | |
- name: Build Image | |
id: build_image | |
run: make image ARCH=${{ matrix.arch }} | |
working-directory: ${{ matrix.context }} | |
- name: Login to Container Registry | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
uses: redhat-actions/[email protected] | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ secrets.REGISTRY_USER }} | |
password: ${{ secrets.REGISTRY_PASSWORD }} | |
- name: Push image | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
uses: redhat-actions/[email protected] | |
with: | |
image: ${{ steps.build_image.outputs.image }} | |
tags: ${{ steps.build_image.outputs.tags }} | |
registry: ${{ env.REGISTRY }} |