Skip to content

Commit

Permalink
Update to match how we built the other image
Browse files Browse the repository at this point in the history
Standardized how we build and test this and adds a schedule to rebuild weekly.

Signed-off-by: Lance Albertson <[email protected]>
  • Loading branch information
ramereth committed Jan 21, 2025
1 parent 4ece2e8 commit b5b3803
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 45 deletions.
100 changes: 56 additions & 44 deletions .github/workflows/ubi-ppc64le-build.yml
Original file line number Diff line number Diff line change
@@ -1,51 +1,63 @@
name: UBI Image Builder
---
name: ubi-ppc64le

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

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository_owner }}/'ubi-ppc64le'
IMAGE_NAME: ubi-ppc64le

jobs:
build-ubi-builder-img:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
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

- name: Log in to the Container Registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build & Push Image
uses: docker/build-push-action@v6
with:
push: true
context: "{{defaultContext}}:ubi-ppc64le"
platforms: linux/ppc64le
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

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 b5b3803

Please sign in to comment.