validate begin
frame type for ws
client (#1332)
#172
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
name: build | |
on: | |
push: | |
branches: [ develop, 'feature/**' ] | |
pull_request: | |
branches: [ develop, 'feature/**' ] | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ 20, 21, 22 ] | |
steps: | |
- name: Checkout GitHub sources | |
uses: actions/checkout@v4 | |
- name: Setup JDK ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: zulu | |
java-version: ${{ matrix.java }} | |
- name: Cache Maven packages | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.m2/repository | |
!~/.m2/repository/io/aklivity/zilla | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: Build with Maven | |
run: ./mvnw -B -U -nsu -Ddocker.logStdout -Dfailsafe.skipAfterFailureCount=1 -Ddocker.verbose install jacoco:report-aggregate | |
env: | |
GITHUB_ACTOR: ${{ github.actor }} | |
GITHUB_TOKEN: ${{ github.token }} | |
- name: Conditional Artifact Upload | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: zilla-build-${{ matrix.java }}-${{ github.event.number }} | |
path: | | |
**/hs_err_pid*.log | |
**/target/surefire-reports/ | |
**/target/zilla-itests/ | |
**/target/failsafe-reports/ |