Update migration to use ZVIEW and ZTABLE (#156) #12
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: [ 17, 21 ] | |
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/zillabase | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: Build with Maven | |
run: ./mvnw -B -U -nsu -Ddocker.logStdout -Ddocker.verbose -Dfailsafe.skipAfterFailureCount=1 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/ |