Skip to content
Closed
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
40 changes: 20 additions & 20 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-latest]
scala: [2.13, 3]
scala: [3.9.0, 3.3.8]
java: [temurin@17]
project: [skunkJS, skunkJVM, skunkNative]
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -143,62 +143,62 @@ jobs:
export SERVER_CERT=$(cat world/server.crt)
docker compose up -d

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

- name: Inflate target directories (2.13, skunkJS)
- name: Inflate target directories (3.9.0, skunkJS)
run: |
tar xf targets.tar
rm targets.tar

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

- name: Inflate target directories (2.13, skunkJVM)
- name: Inflate target directories (3.9.0, skunkJVM)
run: |
tar xf targets.tar
rm targets.tar

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

- name: Inflate target directories (2.13, skunkNative)
- name: Inflate target directories (3.9.0, skunkNative)
run: |
tar xf targets.tar
rm targets.tar

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

- name: Inflate target directories (3, skunkJS)
- name: Inflate target directories (3.3.8, skunkJS)
run: |
tar xf targets.tar
rm targets.tar

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

- name: Inflate target directories (3, skunkJVM)
- name: Inflate target directories (3.3.8, skunkJVM)
run: |
tar xf targets.tar
rm targets.tar

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

- name: Inflate target directories (3, skunkNative)
- name: Inflate target directories (3.3.8, skunkNative)
run: |
tar xf targets.tar
rm targets.tar
Expand Down Expand Up @@ -266,7 +266,7 @@ jobs:
- name: Submit Dependencies
uses: scalacenter/sbt-dependency-submission@v2
with:
modules-ignore: skunk_2.13 skunk_3 docs_2.13 docs_3 skunk_2.13 skunk_3 skunk_2.13 skunk_3 tests_sjs1_2.13 tests_sjs1_3 tests_2.13 tests_3 example_2.13 example_3 tests_native0.5_2.13 tests_native0.5_3 bench_2.13 bench_3
modules-ignore: skunk_3 skunk_3 docs_3 docs_3 skunk_3 skunk_3 skunk_3 skunk_3 tests_sjs1_3 tests_sjs1_3 tests_3 tests_3 example_3 example_3 tests_native0.5_3 tests_native0.5_3 bench_3 bench_3
configs-ignore: test scala-tool scala-doc-tool test-internal

site:
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ThisBuild / tlBaseVersion := "2.0"

// Our Scala versions.
lazy val `scala-2.13` = "2.13.18"
lazy val `scala-2.13` = "3.9.0"
lazy val `scala-3.0` = "3.3.8"

ThisBuild / scalaVersion := `scala-2.13`
Expand Down
Loading