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
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
scala: [2.12.17, 3.3.0, 2.13.10]
scala: [2.12.17, 3.3.5, 2.13.10]
java: [temurin@8, temurin@11]
project: [rootJS, rootJVM, rootNative]
sjsStage: [FastOptStage, FullOptStage]
exclude:
- scala: 2.12.17
java: temurin@11
- scala: 3.3.0
- scala: 3.3.5
java: temurin@11
- project: rootJS
java: temurin@11
Expand Down Expand Up @@ -236,32 +236,32 @@ jobs:
tar xf targets.tar
rm targets.tar

- name: Download target directories (3.3.0, rootJS, FastOptStage)
- name: Download target directories (3.3.5, rootJS, FastOptStage)
uses: actions/download-artifact@v3
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.0-rootJS-FastOptStage
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.5-rootJS-FastOptStage

- name: Inflate target directories (3.3.0, rootJS, FastOptStage)
- name: Inflate target directories (3.3.5, rootJS, FastOptStage)
run: |
tar xf targets.tar
rm targets.tar

- name: Download target directories (3.3.0, rootJVM, FastOptStage)
- name: Download target directories (3.3.5, rootJVM, FastOptStage)
uses: actions/download-artifact@v3
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.0-rootJVM-FastOptStage
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.5-rootJVM-FastOptStage

- name: Inflate target directories (3.3.0, rootJVM, FastOptStage)
- name: Inflate target directories (3.3.5, rootJVM, FastOptStage)
run: |
tar xf targets.tar
rm targets.tar

- name: Download target directories (3.3.0, rootNative, FastOptStage)
- name: Download target directories (3.3.5, rootNative, FastOptStage)
uses: actions/download-artifact@v3
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.0-rootNative-FastOptStage
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.5-rootNative-FastOptStage

- name: Inflate target directories (3.3.0, rootNative, FastOptStage)
- name: Inflate target directories (3.3.5, rootNative, FastOptStage)
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
Expand Up @@ -3,7 +3,7 @@ ThisBuild / startYear := Some(2022)
ThisBuild / developers += tlGitHubDev("armanbilge", "Arman Bilge")
ThisBuild / tlVersionIntroduced := List("2.12", "2.13", "3").map(_ -> "1.0.3").toMap

ThisBuild / crossScalaVersions := Seq("2.12.17", "3.3.0", "2.13.10")
ThisBuild / crossScalaVersions := Seq("2.12.17", "3.3.5", "2.13.10")

ThisBuild / tlFatalWarningsInCi := false

Expand Down
Loading