Skip to content

Add test for subordinate CA clone #4268

Add test for subordinate CA clone

Add test for subordinate CA clone #4268

Workflow file for this run

name: Tools Tests
on: [push, pull_request]
jobs:
init:
name: Initialization
uses: ./.github/workflows/init.yml
secrets: inherit
build:
name: Waiting for build
needs: init
runs-on: ubuntu-latest
steps:
- name: Wait for build
uses: lewagon/[email protected]
with:
ref: ${{ github.ref }}
check-name: 'Building PKI'
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 30
if: github.event_name == 'push'
- name: Wait for build
uses: lewagon/[email protected]
with:
ref: ${{ github.event.pull_request.head.sha }}
check-name: 'Building PKI'
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 30
if: github.event_name == 'pull_request'
PKICertImport-test:
name: PKICertImport
needs: [init, build]
uses: ./.github/workflows/PKICertImport-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
pki-nss-rsa-test:
name: PKI NSS CLI with RSA
needs: [init, build]
uses: ./.github/workflows/pki-nss-rsa-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
pki-nss-ecc-test:
name: PKI NSS CLI with ECC
needs: [init, build]
uses: ./.github/workflows/pki-nss-ecc-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
pki-nss-aes-test:
name: PKI NSS CLI with AES
needs: [init, build]
uses: ./.github/workflows/pki-nss-aes-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
pki-nss-hsm-test:
name: PKI NSS CLI with HSM
needs: [init, build]
uses: ./.github/workflows/pki-nss-hsm-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
pki-nss-exts-test:
name: PKI NSS CLI with Extensions
needs: [init, build]
uses: ./.github/workflows/pki-nss-exts-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
pki-pkcs7-test:
name: PKI PKCS7 CLI
needs: [init, build]
uses: ./.github/workflows/pki-pkcs7-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
pki-pkcs11-test:
name: PKI PKCS11 CLI
needs: [init, build]
uses: ./.github/workflows/pki-pkcs11-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
pki-pkcs12-test:
name: PKI PKCS12 CLI
needs: [init, build]
uses: ./.github/workflows/pki-pkcs12-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
rpminspect-test:
name: rpminspect
needs: [init, build]
uses: ./.github/workflows/rpminspect-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
update-version-test:
name: Update Version
uses: ./.github/workflows/update-version-test.yml