Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,12 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '23'
java-version: '21'
distribution: 'temurin'
cache: gradle

# https://github.com/gradle/actions/blob/main/docs/setup-gradle.md#build-with-a-specific-gradle-version
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
gradle-version: '8.14.2' # Quotes required to prevent YAML converting to number

- name: Run benchmark
run: gradle :benchmark:run
run: ./gradlew :benchmark:run

- name: Upload benchmark artifacts
uses: actions/upload-artifact@v4
Expand Down
12 changes: 3 additions & 9 deletions .github/workflows/build-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,12 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '23'
java-version: '21'
distribution: 'temurin'
cache: gradle

# https://github.com/gradle/actions/blob/main/docs/setup-gradle.md#build-with-a-specific-gradle-version
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
gradle-version: '8.14.2' # Quotes required to prevent YAML converting to number

- name: Build with Gradle
run: gradle build
run: ./gradlew build

- name: Run checks and tests
run: gradle check
run: ./gradlew check
2 changes: 1 addition & 1 deletion .github/workflows/publish-github-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ jobs:
env:
USERNAME: ${{ github.actor }} # GitHub username of the user/bot triggering the workflow
TOKEN: ${{ secrets.GITHUB_TOKEN }} # GitHub token with packages:write permission
run: gradle publish
run: ./gradlew publish
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
*.tar.gz
*.rar

# Exception: Allow gradle wrapper jar
!gradle/wrapper/gradle-wrapper.jar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
replay_pid*
Expand Down
Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.