Skip to content

Commit

Permalink
Add container images building workflow
Browse files Browse the repository at this point in the history
Co-authored-by: Huy Mai <[email protected]>
Signed-off-by: Mohammed Boukhalfa <[email protected]>
  • Loading branch information
mboukhalfa and mquhuy committed Sep 17, 2024
1 parent a4eee8e commit 2ca8e5a
Showing 1 changed file with 26 additions and 32 deletions.
58 changes: 26 additions & 32 deletions .github/workflows/build-images-action.yml
Original file line number Diff line number Diff line change
@@ -1,41 +1,35 @@
name: build-images-action

permissions:
contents: read

on:
push:
branches:
- 'main'

permissions: {}

jobs:
build:
name: Build container images
runs-on: ubuntu-latest

permissions:
contents: read

build_ipxe-builder:
name: build ipxe-builder image
if: github.repository == 'metal3-io/utility-images'
uses: metal3-io/project-infra/.github/workflows/container-image-build.yml@main
with:
image-name: 'ipxe-builder'
pushImage: true
dockerfile-directory: ipxe-builder
secrets:
QUAY_USERNAME: ${{ secrets.QUAY_USERNAME }}
QUAY_PASSWORD: ${{ secrets.QUAY_PASSWORD }}
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
build_fake-ipa:
name: build fake-ipa image
if: github.repository == 'metal3-io/utility-images'
steps:
- name: build ipxe-builder image
uses: toptal/jenkins-job-trigger-action@137fff703dd260b52b53d3ba1960396415abc568 # 1.0.2
with:
jenkins_url: "https://jenkins.nordix.org/"
jenkins_user: "[email protected]"
jenkins_token: ${{ secrets.JENKINS_TOKEN }}
job_name: "metal3_ipxe-builder_container_image_building"
job_params: |
{
"BUILD_CONTAINER_IMAGE_GIT_REFERENCE": "${{ github.ref }}"
}
job_timeout: "1000"
- name: Slack Notification on Failure
if: ${{ failure() }}
uses: rtCamp/action-slack-notify@4e5fb42d249be6a45a298f3c9543b111b02f7907 # 2.3.0
env:
SLACK_TITLE: 'GitHub Action Failed in ${{ github.repository }}'
SLACK_COLOR: '#FF0000'
SLACK_MESSAGE: 'The GitHub Action workflow has failed during the build of utility images.'
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_CHANNEL: metal3-github-actions-notify
SLACK_USERNAME: metal3-github-actions-notify
uses: metal3-io/project-infra/.github/workflows/container-image-build.yml@main
with:
image-name: 'fake-ipa'
pushImage: true
dockerfile-directory: fake-ipa
secrets:
QUAY_USERNAME: ${{ secrets.QUAY_USERNAME }}
QUAY_PASSWORD: ${{ secrets.QUAY_PASSWORD }}
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}

0 comments on commit 2ca8e5a

Please sign in to comment.