add podman.socket for run #4
Workflow file for this run
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: CI build and push (PR) | ||
concurrency: | ||
group: pr-${{ github.event.number }} | ||
cancel-in-progress: true | ||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- reopened | ||
- synchronize | ||
- labeled | ||
- unlabeled | ||
branches: | ||
- main | ||
- v[0-9]+ | ||
- v[0-9]+.[0-9]+ | ||
- cryostat-v[0-9]+.[0-9]+ | ||
jobs: | ||
code-analysis: | ||
uses: ./.github/workflows/ci-code-analysis.yml | ||
with: | ||
checkout-repo: ${{ github.event.pull_request.head.repo.full_name }} | ||
checkout-ref: ${{ github.event.pull_request.head.ref }} | ||
secrets: inherit | ||
if: github.repository_owner == 'cryostatio' && contains(github.event.pull_request.labels.*.name, 'safe-to-test') | ||
build-and-test: | ||
strategy: | ||
matrix: | ||
arch: [amd64, arm64] | ||
uses: ./.github/workflows/ci-build-image.yml | ||
with: | ||
build-arch: ${{ matrix.arch }} | ||
checkout-repo: ${{ github.event.pull_request.head.repo.full_name }} | ||
checkout-ref: ${{ github.event.pull_request.head.ref }} | ||
skip-itests: ${{ matrix.arch != 'amd64' }} | ||
secrets: inherit | ||
if: github.repository_owner == 'cryostatio' && contains(github.event.pull_request.labels.*.name, 'safe-to-test') | ||
push-to-ghcr: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
arch: [amd64, arm64] | ||
needs: [code-analysis, build-and-test] | ||
if: always() && github.repository_owner == 'cryostatio' | ||
steps: | ||
- name: Fail if needs-triage label applied | ||
if: ${{ contains(github.event.pull_request.labels.*.name, 'needs-triage') }} | ||
run: exit 1 | ||
- name: Fail if safe-to-test label NOT applied | ||
if: ${{ !contains(github.event.pull_request.labels.*.name, 'safe-to-test') }} | ||
run: exit 1 | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: cryostat-${{ matrix.arch }} | ||
if: github.repository_owner == 'cryostatio' | ||
- name: Load cryostat image | ||
run: podman load -i cryostat-${{ matrix.arch }}.tar | ||
if: github.repository_owner == 'cryostatio' | ||
- name: Tag cryostat image | ||
run: podman tag cryostat ghcr.io/${{ github.repository_owner }}/cryostat:pr-${{ github.event.number }}-${{ github.event.pull_request.head.sha }}-linux-${{ matrix.arch }} | ||
if: github.repository_owner == 'cryostatio' | ||
- name: Push PR test image to ghcr.io | ||
id: push-to-ghcr | ||
uses: redhat-actions/push-to-registry@v2 | ||
with: | ||
image: cryostat | ||
tags: pr-${{ github.event.number }}-${{ github.event.pull_request.head.sha }}-linux-${{ matrix.arch }} | ||
registry: ghcr.io/${{ github.repository_owner }} | ||
username: ${{ github.event.pull_request.user.login }} | ||
password: ${{ secrets.GHCR_PR_TOKEN }} | ||
if: github.repository_owner == 'cryostatio' | ||
- name: Comment test image link | ||
uses: thollander/actions-comment-pull-request@v1 | ||
with: | ||
message: |- | ||
Test image available: | ||
``` | ||
$ CRYOSTAT_IMAGE=${{ steps.push-to-ghcr.outputs.registry-path }} sh smoketest.sh | ||
``` | ||
if: github.repository_owner == 'cryostatio' |