nightly-build #39
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
name: nightly-build | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
linux: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run a one-line script | |
run: make test | |
macos: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install golang | |
shell: bash | |
run: brew install go | |
- name: Run a one-line script | |
shell: bash | |
run: make test | |
build: | |
runs-on: ubuntu-22.04 | |
needs: [linux, macos] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: 'main' | |
- name: install qemu-user-static | |
run: | | |
sudo apt-get update | |
sudo apt-get install qemu-user-static | |
- name: Login to Registry | |
uses: redhat-actions/podman-login@v1.7 | |
with: | |
registry: quay.io | |
username: ${{ secrets.USERNAME }} | |
password: ${{ secrets.PASSWORD }} | |
- name: use buildah to build images for amd and aarch64 | |
uses: redhat-actions/buildah-build@v2 | |
id: build_image | |
with: | |
image: quay.io/ramalama/ramalama | |
tags: nightly | |
containerfiles: | | |
container-images/ramalama/latest/Containerfile | |
platforms: linux/amd64, linux/arm64 | |
- name: push images to registry | |
uses: redhat-actions/push-to-registry@v2.8 | |
with: | |
image: ramalama/ramalama | |
tags: nightly | |
registry: quay.io |