Skip to content

Commit

Permalink
Merge pull request #32 from Shafi-Hussain/ubi-builder-img
Browse files Browse the repository at this point in the history
Created workflow to build and push ubi-ppc64le image to GHCR
  • Loading branch information
ramereth authored Jan 21, 2025
2 parents 0b759aa + b5b3803 commit 5afe073
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 1 deletion.
63 changes: 63 additions & 0 deletions .github/workflows/ubi-ppc64le-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
---
name: ubi-ppc64le

on:
push:
branches:
- master
paths: ubi-ppc64le/*
pull_request:
paths: ubi-ppc64le/*
schedule:
- cron: '15 20 * * 2'

env:
REGISTRY: ghcr.io
IMAGE_NAME: ubi-ppc64le

jobs:
docker:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup QEMU
uses: docker/setup-qemu-action@v3
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and export Docker image
uses: docker/build-push-action@v5
with:
context: ubi-ppc64le
tags: osuosl/ubi-ppc64le:test
platforms: linux/ppc64le
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Log in to the Container Registry
if: contains(fromJSON('["push", "schedule"]'), github.event_name)
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
if: contains(fromJSON('["push", "schedule"]'), github.event_name)
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=ref,event=branch
type=schedule,${{ github.ref_name }}
- name: Build and push Docker image
if: contains(fromJSON('["push", "schedule"]'), github.event_name)
uses: docker/build-push-action@v5
with:
context: ubi-ppc64le
push: true
tags: ghcr.io/osuosl/ubi-ppc64le:latest
platforms: linux/ppc64le
labels: ${{ steps.meta.outputs.labels }}
2 changes: 1 addition & 1 deletion ubi-ppc64le/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ RUN dnf install -y ccache && \
chmod 2777 /var/cache/ccache
COPY ccache.conf /etc/ccache.conf

# setup SSH server
# Setup SSH server
RUN dnf install -y openssh-server && \
dnf clean all && \
rm -rf /var/cache/yum && \
Expand Down

0 comments on commit 5afe073

Please sign in to comment.