debug daily build CI failures for mTLS tests #34
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: "PR" | |
| on: | |
| - pull_request | |
| jobs: | |
| linux-build-jvm-latest: | |
| name: Linux JVM | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 240 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| java: [ 17 ] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install JDK {{ matrix.java }} | |
| # Uses sha for added security since tags can be updated | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: ${{ matrix.java }} | |
| check-latest: true | |
| cache: 'maven' | |
| - uses: ./.github/actions/use-docker-mirror | |
| - name: Build with Maven | |
| run: | | |
| ls | |
| mvn -fae -V -B --no-transfer-progress clean verify -pl http/management/ -Dit.test=MutualTlsManagementInterfaceIT |