Support AOT derived query methods #84
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: PR Build | |
| on: pull_request | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| if: github.repository == 'evgeniycheban/spring-data-reindexer' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: 17 | |
| distribution: 'temurin' | |
| # TODO: Repo's SSL certificate has expired. | |
| # - name: Install Reindexer | |
| # run: | | |
| # curl https://repo.reindexer.io/RX-KEY.GPG | sudo apt-key add | |
| # echo 'deb https://repo.reindexer.io/ubuntu-bionic /' | sudo tee -a /etc/apt/sources.list | |
| # sudo apt-get update | |
| # sudo apt-get install reindexer-dev | |
| - name: Build spring-data-reindexer in AOT mode | |
| run: mvn --batch-mode --update-snapshots verify -Paot | |
| - name: Build spring-data-reindexer | |
| run: mvn --batch-mode --update-snapshots clean install | |
| - name: Build spring-boot-starter-data-reindexer | |
| run: mvn --batch-mode --update-snapshots -f spring-boot-starter-data-reindexer/pom.xml verify |