Skip to content

Commit

Permalink
adding CI for building al9 image
Browse files Browse the repository at this point in the history
  • Loading branch information
dingp committed Aug 14, 2023
1 parent a7be965 commit 0a0906f
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/al9.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Build almalinux9 docker image

on:
schedule:
- cron: "0 5 * * 2"

push:
branches: [ develop ]
tags:
- 'v*'
paths:
- dockerfiles/al9.dockerfile

workflow_dispatch:

jobs:

push_to_registries:
name: Push Docker image to multiple registries
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Check out the repo
uses: actions/checkout@v3
with:
repository: DUNE-DAQ/daq-docker
path: daq-docker

- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: |
ghcr.io/DUNE-DAQ/al9
tags: |
type=raw,value=latest
type=ref,event=branch
type=ref,event=tag
- name: prepare build dir
run: |
build_dir="${{ github.workspace }}/docker-build"
mkdir -p $build_dir
cd $build_dir
cp ${{ github.workspace }}/daq-docker/dockerfiles/alma9.dockerfile $build_dir/Dockerfile
- name: Build and push Docker images
uses: docker/build-push-action@v3
with:
context: ${{ github.workspace }}/docker-build
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 0a0906f

Please sign in to comment.