Skip to content

Commit

Permalink
downgrade scala 3 version
Browse files Browse the repository at this point in the history
  • Loading branch information
kovstas committed Jun 17, 2024
1 parent 6309cde commit b847cc3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
scala: [ 2.12, 2.13, 3 ]
scala: [ 2.12, 2.13, 3.3 ]
java: [ temurin@17 ]
project: [ rootJS, root, rootNative ]
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -103,30 +103,30 @@ jobs:
if: matrix.java == 'temurin@17' && steps.setup-java-temurin-17.outputs.cache-hit == 'false'
run: sbt +update

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

- name: Inflate target directories (3, rootJS)
- name: Inflate target directories (3.3, rootJS)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (3, root)
- name: Download target directories (3.3, root)
uses: actions/download-artifact@v4
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3-root
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3-root

- name: Inflate target directories (3, root)
- name: Inflate target directories (3.3, root)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (3, rootNative)
- name: Download target directories (3.3, rootNative)
uses: actions/download-artifact@v4
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3-rootNative
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3-rootNative

- name: Inflate target directories (3, rootNative)
- name: Inflate target directories (3.3, rootNative)
run: |
tar xf targets.tar
rm targets.tar
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 / organization := "dev.kovstas"

ThisBuild / scalaVersion := "2.13.14"
ThisBuild / crossScalaVersions := List("2.12.19", "2.13.14", "3.4.2")
ThisBuild / crossScalaVersions := List("2.12.19", "2.13.14", "3.3.3")
ThisBuild / scalacOptions ++= scalaOptions(scalaVersion.value)

ThisBuild / libraryDependencies ++= Seq(
Expand Down

0 comments on commit b847cc3

Please sign in to comment.