Enable Oracle integration tests on Apple Silicon. #44
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 Build | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ main, 'issue/**' ] | |
| permissions: read-all | |
| jobs: | |
| build-java: | |
| strategy: | |
| matrix: | |
| java-version: [ base, main ] | |
| name: Build project | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Java and Maven | |
| uses: spring-projects/spring-data-build/actions/setup-maven@main | |
| with: | |
| java-version: ${{ matrix.java-version }} | |
| develocity-access-key: '${{ secrets.DEVELOCITY_ACCESS_KEY }}' | |
| - name: Prepare Docker Container Licenses | |
| run: ./ci/accept-third-party-license.sh | |
| - name: Build | |
| uses: spring-projects/spring-data-build/actions/maven-build@main | |
| with: | |
| run: ./mvnw -Dsort -B -U -Pall-dbs clean dependency:list verify |