Skip to content

Adding useful OCSP debug messages #91

Adding useful OCSP debug messages

Adding useful OCSP debug messages #91

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
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'
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 }}