chore(ci): PR command build_test #2
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: test-CI-on-push | ||
concurrency: | ||
group: ci-${{ github.run_id }} | ||
cancel-in-progress: true | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- v[0-9]+ | ||
- v[0-9]+.[0-9]+ | ||
- cryostat-v[0-9]+.[0-9]+ | ||
env: | ||
CI_USER: cryostat+bot | ||
CI_REGISTRY: quay.io/cryostat | ||
CI_OPERATOR_IMG: quay.io/cryostat/cryostat-operator | ||
CI_BUNDLE_IMG: quay.io/cryostat/cryostat-operator-bundle | ||
CI_SCORECARD_IMG: quay.io/cryostat/cryostat-operator-scorecard | ||
CI_PLATFORMS: linux/amd64,linux/arm64 | ||
OPENSUSE_UNOFFICIAL_LIBCONTAINERS_KEY_URL: "https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/unstable/xUbuntu_22.04/Release.key" | ||
OPENSUSE_UNOFFICIAL_LIBCONTAINERS_SOURCE_URL: "https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/unstable/xUbuntu_22.04" | ||
jobs: | ||
check-before-test: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: write | ||
if: github.repository_owner == 'cryostatio' | ||
steps: | ||
- name: Fail if needs-triage label applied | ||
if: ${{ contains(github.event.issue.labels.*.name, 'needs-triage') }} | ||
run: exit 1 | ||
- name: Fail if safe-to-test label is not applied | ||
if: ${{ !contains(github.event.issue.labels.*.name, 'safe-to-test') }} | ||
run: exit 1 | ||
get-test-image-tag: | ||
runs-on: ubuntu-latest | ||
needs: [check-before-test] | ||
outputs: | ||
tag: ${{ steps.compute-tag.outputs.tag }} | ||
steps: | ||
- name: Compute test image tag | ||
id: compute-tag | ||
run: | | ||
prefix="ci" | ||
if [ -n "${{ github.event.number }}" ]; then | ||
prefix="pr-${{ github.event.number }}" | ||
fi | ||
echo "tag=${prefix}-$GITHUB_SHA" >> $GITHUB_OUTPUT | ||
run-test-jobs: | ||
uses: ./.github/workflow/test-ci-reusable.yaml | ||
needs: [get-test-image-tag] | ||
with: | ||
repository: ${{ github.event.pull_request.head.repo.full_name }} | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
tag: ${{ needs.get-test-image-tag.outputs.tag }} |