Skip to content

remove package uninstallation (we might not need this anymore) #642

remove package uninstallation (we might not need this anymore)

remove package uninstallation (we might not need this anymore) #642

Workflow file for this run

name: Build images
on:
pull_request:
push:
branches:
- main
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: true
permissions:
packages: write
strategy:
matrix:
context:
- ubuntu2204_exatrkx
- ubuntu2204
- ubuntu2204_cuda
- ubuntu2204_cuda_oneapi
- ubuntu2204_clang
- ubuntu2204_rocm_clang
- ubuntu2204_rocm_clang_cxx20
- ubuntu2404
- ubuntu2404_cuda
- ubuntu2404_cuda_oneapi
- ubuntu2404_rocm_oneapi
- ubuntu2404_oneapi
- alma9-base
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
# list of Docker images to use as base name for tags
images: |
ghcr.io/${{ github.repository_owner }}/${{ matrix.context }}
# generate Docker tags based on the following events/attributes
tags: |
type=schedule
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=raw,value=latest,enable={{is_default_branch}}
type=sha
- name: Build and push
uses: docker/build-push-action@v5
with:
context: ${{ matrix.context }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=registry,ref=ghcr.io/${{ github.repository_owner }}/${{ matrix.context }}:buildcache
cache-to: type=registry,ref=ghcr.io/${{ github.repository_owner }}/${{ matrix.context }}:buildcache,mode=max