Skip to content

1.5.0-Rc.1

1.5.0-Rc.1 #8

Workflow file for this run

name: OpenCL Dev CI/CD
on:
push:
branches:
- "opencl"
- "dev"
- "cuda"
- "cpu"
- "beta"
env:
REGISTRY: "ghcr.io"
REGISTRY_USER: ${{ github.actor }}
REGISTRY_SECRET: ${{ secrets.GITHUB_TOKEN }}
IMAGE_NAME: ${{ github.repository }}
permissions:
contents: read
packages: write
jobs:
build_and_publish:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- docker_file: Dockerfile.opencl.nvidia
label: "dev-opencl-nvidia"
- docker_file: Dockerfile.opencl.amd
label: "dev-opencl-amd"
steps:
- uses: actions/checkout@v4
- name: Meta
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=ref,event=tag
type=sha,prefix=sha-
labels: |
type=raw,value=image-type=${{ matrix.label }}
- uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ env.REGISTRY_USER }}
password: ${{ env.REGISTRY_SECRET }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: ${{ matrix.docker_file }}
push: ${{ github.event_name != 'pull_request' }}
tags: |
${{ steps.meta.outputs.tags }}
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ matrix.label }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64