Skip to content

Drop DRMTool

Drop DRMTool #4073

Workflow file for this run

name: OCSP 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
ocsp-basic-test:
name: Basic OCSP
needs: [init, build]
uses: ./.github/workflows/ocsp-basic-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ocsp-separate-test:
name: OCSP on separate instance
needs: [init, build]
uses: ./.github/workflows/ocsp-separate-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ocsp-external-certs-test:
name: OCSP with external certs
needs: [init, build]
uses: ./.github/workflows/ocsp-external-certs-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ocsp-cmc-test:
name: OCSP with CMC
needs: [init, build]
uses: ./.github/workflows/ocsp-cmc-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ocsp-clone-test:
name: OCSP clone
needs: [init, build]
uses: ./.github/workflows/ocsp-clone-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ocsp-standalone-test:
name: Standalone OCSP
needs: [init, build]
uses: ./.github/workflows/ocsp-standalone-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ocsp-crl-direct-test:
name: OCSP with direct CRL publishing
needs: [init, build]
uses: ./.github/workflows/ocsp-crl-direct-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ocsp-crl-ldap-test:
name: OCSP with LDAP-based CRL publishing
needs: [init, build]
uses: ./.github/workflows/ocsp-crl-ldap-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ocsp-hsm-test:
name: OCSP with HSM
needs: [init, build]
uses: ./.github/workflows/ocsp-hsm-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}