-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from Nordix/mquhuy/move-image-build-to-gh-runner
🌱 Move Image build to GH runner
- Loading branch information
Showing
1 changed file
with
13 additions
and
31 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,36 +7,18 @@ on: | |
tags: | ||
- 'v*' | ||
|
||
permissions: {} | ||
jobs: | ||
build: | ||
name: Build container images | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
contents: read | ||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build_ipa_downloader: | ||
name: build ipa downloader image | ||
if: github.repository == 'metal3-io/ironic-ipa-downloader' | ||
steps: | ||
- name: build ipa downloader 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_ironic-ipa-downloader_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 failed for IPA downloader image build.' | ||
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: 'ironic-ipa-downloader' | ||
pushImage: true | ||
secrets: | ||
QUAY_USERNAME: ${{ secrets.QUAY_USERNAME }} | ||
QUAY_PASSWORD: ${{ secrets.QUAY_PASSWORD }} | ||
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} |