-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move subordinate CA tests into separate workflow
- Loading branch information
Showing
5 changed files
with
88 additions
and
68 deletions.
There are no files selected for viewing
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
File renamed without changes.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: SubCA 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 | ||
|
||
subca-basic-test: | ||
name: Basic SubCA | ||
needs: [init, build] | ||
uses: ./.github/workflows/subca-basic-test.yml | ||
with: | ||
db-image: ${{ needs.init.outputs.db-image }} | ||
|
||
subca-cmc-test: | ||
name: SubCA with CMC | ||
needs: [init, build] | ||
uses: ./.github/workflows/subca-cmc-test.yml | ||
with: | ||
db-image: ${{ needs.init.outputs.db-image }} | ||
|
||
subca-external-test: | ||
name: SubCA with external cert | ||
needs: [init, build] | ||
uses: ./.github/workflows/subca-external-test.yml | ||
with: | ||
db-image: ${{ needs.init.outputs.db-image }} | ||
|
||
subca-hsm-test: | ||
name: SubCA with HSM | ||
needs: [init, build] | ||
uses: ./.github/workflows/subca-hsm-test.yml | ||
with: | ||
db-image: ${{ needs.init.outputs.db-image }} | ||
|
||
subca-clone-test: | ||
name: SubCA clone | ||
needs: [init, build] | ||
uses: ./.github/workflows/subca-clone-test.yml | ||
with: | ||
db-image: ${{ needs.init.outputs.db-image }} | ||
|
||
subca-clone-heml-test: | ||
name: SubCA clone with HSM | ||
needs: [init, build] | ||
uses: ./.github/workflows/subca-clone-hsm-test.yml | ||
with: | ||
db-image: ${{ needs.init.outputs.db-image }} | ||
|
||
subca-lightweight-test: | ||
name: Lightweight SubCA | ||
needs: [init, build] | ||
uses: ./.github/workflows/subca-lightweight-test.yml | ||
with: | ||
db-image: ${{ needs.init.outputs.db-image }} | ||
|
||
subca-lightweight-hsm-test: | ||
name: Lightweight SubCA with HSM | ||
needs: [init, build] | ||
uses: ./.github/workflows/subca-lightweight-hsm-test.yml | ||
with: | ||
db-image: ${{ needs.init.outputs.db-image }} |
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