Add advance(int) for numeric values in order to allow point based optimization to kick in #3406
Workflow file for this run
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: Gradle Assemble | |
on: [pull_request] | |
jobs: | |
assemble: | |
if: github.repository == 'opensearch-project/OpenSearch' | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
java: [ 11, 17, 21 ] | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: temurin | |
- name: Setup docker (missing on MacOS) | |
if: runner.os == 'macos' | |
run: | | |
brew install docker | |
colima start | |
sudo ln -sf $HOME/.colima/default/docker.sock /var/run/docker.sock | |
- name: Run Gradle (assemble) | |
run: | | |
./gradlew assemble --parallel --no-build-cache -PDISABLE_BUILD_CACHE |