Fix dnf localinstall #1185
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: PKI Tests | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Waiting for build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Wait for build | |
uses: lewagon/wait-on-check-action@v1.3.4 | |
with: | |
ref: ${{ github.ref }} | |
check-name: 'Building JSS' | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
wait-interval: 30 | |
if: github.event_name == 'push' | |
- name: Wait for build | |
uses: lewagon/wait-on-check-action@v1.3.4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
check-name: 'Building JSS' | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
wait-interval: 30 | |
if: github.event_name == 'pull_request' | |
pki-build-test: | |
name: Testing PKI build | |
needs: build | |
uses: ./.github/workflows/pki-build-test.yml | |
pki-tools-test: | |
name: Testing PKI tools | |
needs: build | |
uses: ./.github/workflows/pki-tools-test.yml | |
pki-ca-test: | |
name: Testing PKI CA | |
needs: build | |
uses: ./.github/workflows/pki-ca-test.yml | |
pki-tps-test: | |
name: Testing PKI TPS | |
needs: build | |
uses: ./.github/workflows/pki-tps-test.yml |