Add PBMAC1 test suite and CI integration: Claude Sonnet 4.5 assisted. #69
Workflow file for this run
This file contains hidden or 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: Tomcat Tests | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| name: Waiting for build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Wait for build | |
| uses: lewagon/wait-on-check-action@v1.3.4 | |
| with: | |
| ref: ${{ github.ref }} | |
| check-name: 'Building JSS' | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| wait-interval: 30 | |
| if: github.event_name == 'push' | |
| - name: Wait for build | |
| uses: lewagon/wait-on-check-action@v1.3.4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| check-name: 'Building JSS' | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| wait-interval: 30 | |
| if: github.event_name == 'pull_request' | |
| tomcat-basic-test: | |
| name: Basic Tomcat | |
| needs: build | |
| uses: ./.github/workflows/tomcat-basic-test.yml | |
| tomcat-https-default-test: | |
| name: Tomcat HTTPS with default settings | |
| needs: build | |
| uses: ./.github/workflows/tomcat-https-default-test.yml | |
| tomcat-https-tls13-test: | |
| name: Tomcat HTTPS with TLS 1.3 | |
| needs: build | |
| uses: ./.github/workflows/tomcat-https-tls13-test.yml | |
| tomcat-https-ciphers-test: | |
| name: Tomcat HTTPS with specific ciphers | |
| needs: build | |
| uses: ./.github/workflows/tomcat-https-ciphers-test.yml | |
| tomcat-https-multi-certificate-test: | |
| name: Tomcat HTTPS with multiple certificates | |
| needs: build | |
| uses: ./.github/workflows/tomcat-https-multi-certificate-test.yml |