chore: make test badges linkable to actual tests #4468
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: KRA Tests | |
on: [push, pull_request] | |
jobs: | |
init: | |
name: Initialization | |
uses: ./.github/workflows/init.yml | |
secrets: inherit | |
build: | |
name: Waiting for build | |
needs: init | |
uses: ./.github/workflows/wait-for-build.yml | |
secrets: inherit | |
kra-basic-test: | |
name: Basic KRA | |
needs: [init, build] | |
uses: ./.github/workflows/kra-basic-test.yml | |
with: | |
db-image: ${{ needs.init.outputs.db-image }} | |
kra-oaep-test: | |
name: KRA with RSA OAEP padding | |
needs: [init, build] | |
uses: ./.github/workflows/kra-oaep-test.yml | |
with: | |
db-image: ${{ needs.init.outputs.db-image }} | |
kra-separate-test: | |
name: KRA on separate instance | |
needs: [init, build] | |
uses: ./.github/workflows/kra-separate-test.yml | |
with: | |
db-image: ${{ needs.init.outputs.db-image }} | |
kra-external-certs-test: | |
name: KRA with external certs | |
needs: [init, build] | |
uses: ./.github/workflows/kra-external-certs-test.yml | |
with: | |
db-image: ${{ needs.init.outputs.db-image }} | |
kra-cmc-test: | |
name: KRA with CMC | |
needs: [init, build] | |
uses: ./.github/workflows/kra-cmc-test.yml | |
with: | |
db-image: ${{ needs.init.outputs.db-image }} | |
kra-clone-test: | |
name: KRA clone | |
needs: [init, build] | |
uses: ./.github/workflows/kra-clone-test.yml | |
with: | |
db-image: ${{ needs.init.outputs.db-image }} | |
kra-standalone-test: | |
name: Standalone KRA | |
needs: [init, build] | |
uses: ./.github/workflows/kra-standalone-test.yml | |
with: | |
db-image: ${{ needs.init.outputs.db-image }} | |
kra-sequential-test: | |
name: KRA with sequential serial numbers | |
needs: [init, build] | |
uses: ./.github/workflows/kra-sequential-test.yml | |
with: | |
db-image: ${{ needs.init.outputs.db-image }} | |
kra-hsm-test: | |
name: KRA with HSM | |
needs: [init, build] | |
uses: ./.github/workflows/kra-hsm-test.yml | |
with: | |
db-image: ${{ needs.init.outputs.db-image }} |