mirror of
https://github.com/redhat-actions/buildah-build.git
synced 2025-06-07 17:31:35 +00:00
Add matrix to install latest buildah (#67)
* Add matrix to install latest buildah Signed-off-by: divyansh42 <diagrawa@redhat.com>
This commit is contained in:
parent
b82756135c
commit
fe5edd5859
4 changed files with 34 additions and 0 deletions
7
.github/workflows/multiarch.yml
vendored
7
.github/workflows/multiarch.yml
vendored
|
@ -18,6 +18,8 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
arch: [ amd64, i386, arm64v8 ]
|
||||
install_latest: [ true, false ]
|
||||
|
||||
steps:
|
||||
|
||||
# Checkout buildah action github repository
|
||||
|
@ -26,6 +28,11 @@ jobs:
|
|||
with:
|
||||
path: "buildah-build"
|
||||
|
||||
- name: Install latest buildah
|
||||
if: matrix.install_latest
|
||||
run: |
|
||||
bash buildah-build/.github/install_latest_buildah.sh
|
||||
|
||||
- name: Install qemu dependency
|
||||
run: |
|
||||
sudo apt-get update
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue