v7.0.0: Complete rewrite as drop-in replacement #72
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| build: | |
| name: Build and Test | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| jdk: [21] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK ${{ matrix.jdk }} | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: ${{ matrix.jdk }} | |
| distribution: zulu | |
| - name: Cache Maven packages | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.m2/repository | |
| key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: ${{ runner.os }}-m2 | |
| - name: Clone and build eXist-db (SNAPSHOT dependency) | |
| shell: bash | |
| run: | | |
| git clone --depth 1 https://github.com/eXist-db/exist.git "$RUNNER_TEMP/exist-db" | |
| cd "$RUNNER_TEMP/exist-db" | |
| mvn -V -B -DskipTests -Ddependency-check.skip=true -Ddocker=false -pl exist-core,exist-start -am install | |
| - name: Build | |
| run: mvn -V -B -DskipTests install | |
| - name: Test | |
| run: mvn -B verify -Pintegration-tests |