Update Ubuntu 24.04 ROCm+OneAPI image #648
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 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 }} | |
- uses: docker/login-action@v3 | |
with: | |
registry: gitlab-registry.cern.ch | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITLAB_REGISTRY_PUSH_TOKEN }} | |
- name: Remove packages for ExaTrkX build | |
if: ${{ matrix.context == 'ubuntu2204_exatrkx' }} | |
run: | | |
df -h | |
sudo apt-get update | |
echo "Listing 25 largest packages" | |
dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -n | tail -n 25 | |
echo "Removing large packages" | |
sudo apt-get remove -y '^dotnet-.*' | |
sudo apt-get remove -y '^llvm-.*' | |
sudo apt-get remove -y '^libllvm-.*' | |
sudo apt-get remove -y azure-cli | |
sudo apt-get remove -y google-cloud-cli | |
sudo apt-get remove -y google-chrome-stable | |
sudo apt-get remove -y firefox | |
sudo apt-get remove -y powershell | |
sudo apt-get remove -y mono-devel | |
sudo apt-get remove -y '^temurin.*' | |
sudo apt-get autoremove -y | |
sudo apt-get clean | |
rm -rf /usr/share/dotnet/ | |
df -h | |
- 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 }} | |
gitlab-registry.cern.ch/acts/machines/${{ matrix.context }} | |
# generate Docker tags based on the following events/attributesk | |
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 |