-
Notifications
You must be signed in to change notification settings - Fork 119
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 #481 from Nordix/tuomo/fix-build-images-23.1
🌱 fix build images action in release-23.1
- Loading branch information
Showing
1 changed file
with
46 additions
and
42 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 |
---|---|---|
@@ -1,54 +1,58 @@ | ||
name: build-images-action | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- 'release-*' | ||
- 'main' | ||
- 'release-*' | ||
tags: | ||
- 'v*' | ||
|
||
permissions: {} | ||
|
||
jobs: | ||
build: | ||
name: Build container images | ||
runs-on: ubuntu-latest | ||
if: github.repository == 'metal3-io/ironic-image' | ||
|
||
permissions: | ||
contents: read | ||
|
||
if: github.repository == 'metal3-io/ironic-image' | ||
steps: | ||
- name: build ironic 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_container_image_building" | ||
job_params: | | ||
{ | ||
"BUILD_CONTAINER_IMAGE_NAME": "ironic", | ||
"BUILD_CONTAINER_IMAGE_BRANCH": "${{ github.ref }}" | ||
} | ||
job_timeout: "1000" | ||
- name: build sushy-tools 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_sushy-tools_container_image_building" | ||
job_params: | | ||
{ | ||
"BUILD_CONTAINER_IMAGE_NAME": "sushy-tools", | ||
"BUILD_CONTAINER_IMAGE_BRANCH": "${{ github.ref }}" | ||
} | ||
job_timeout: "1000" | ||
- name: build vbmc 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_vbmc_container_image_building" | ||
job_params: | | ||
{ | ||
"BUILD_CONTAINER_IMAGE_NAME": "vbmc", | ||
"BUILD_CONTAINER_IMAGE_BRANCH": "${{ github.ref }}" | ||
} | ||
job_timeout: "1000" | ||
- name: build ironic 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_container_image_building" | ||
job_params: | | ||
{ | ||
"BUILD_CONTAINER_IMAGE_GIT_REFERENCE": "${{ github.ref }}" | ||
} | ||
job_timeout: "1000" | ||
- name: build sushy-tools 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_sushy-tools_container_image_building" | ||
job_params: | | ||
{ | ||
"BUILD_CONTAINER_IMAGE_GIT_REFERENCE": "${{ github.ref }}" | ||
} | ||
job_timeout: "1000" | ||
- name: build vbmc 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_vbmc_container_image_building" | ||
job_params: | | ||
{ | ||
"BUILD_CONTAINER_IMAGE_GIT_REFERENCE": "${{ github.ref }}" | ||
} | ||
job_timeout: "1000" |