Skip to content
Open
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
28 changes: 14 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-22.04]
scala: [3.3.7, 3.7.4]
scala: [3.3.7, 3.8.2]
java:
- corretto@11
- corretto@17
Expand All @@ -42,11 +42,11 @@ jobs:
java: corretto@21
- project: ldbcJS
java: corretto@25
- scala: 3.7.4
- scala: 3.8.2
java: corretto@17
- scala: 3.7.4
- scala: 3.8.2
java: corretto@21
- scala: 3.7.4
- scala: 3.8.2
java: corretto@25
- project: ldbcNative
java: corretto@17
Expand Down Expand Up @@ -268,32 +268,32 @@ jobs:
tar xf targets.tar
rm targets.tar

- name: Download target directories (3.7.4, ldbcJS)
- name: Download target directories (3.8.2, ldbcJS)
uses: actions/download-artifact@v6
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.7.4-ldbcJS
name: target-${{ matrix.os }}-${{ matrix.java }}-3.8.2-ldbcJS

- name: Inflate target directories (3.7.4, ldbcJS)
- name: Inflate target directories (3.8.2, ldbcJS)
run: |
tar xf targets.tar
rm targets.tar

- name: Download target directories (3.7.4, ldbcNative)
- name: Download target directories (3.8.2, ldbcNative)
uses: actions/download-artifact@v6
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.7.4-ldbcNative
name: target-${{ matrix.os }}-${{ matrix.java }}-3.8.2-ldbcNative

- name: Inflate target directories (3.7.4, ldbcNative)
- name: Inflate target directories (3.8.2, ldbcNative)
run: |
tar xf targets.tar
rm targets.tar

- name: Download target directories (3.7.4, ldbcJVM)
- name: Download target directories (3.8.2, ldbcJVM)
uses: actions/download-artifact@v6
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.7.4-ldbcJVM
name: target-${{ matrix.os }}-${{ matrix.java }}-3.8.2-ldbcJVM

- name: Inflate target directories (3.7.4, ldbcJVM)
- name: Inflate target directories (3.8.2, ldbcJVM)
run: |
tar xf targets.tar
rm targets.tar
Expand Down Expand Up @@ -581,7 +581,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-22.04]
scala: [3.3.7, 3.7.4]
scala: [3.3.7, 3.8.2]
java: [corretto@25]
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion project/Versions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ object LdbcVersions {
object ScalaVersions {
val scala2 = "2.12.19"
val scala3 = "3.3.7"
val scala37 = "3.7.4"
val scala37 = "3.8.2"
}

object JavaVersions {
Expand Down
Loading