Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update scala-library to 2.12.20 #415

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.1.3]
scala: [3.2.1]
java: [temurin@11]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.1.3]
scala: [3.2.1]
java: [temurin@11]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -100,12 +100,12 @@ jobs:
~/Library/Caches/Coursier/v1
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}

- name: Download target directories (3.1.3)
- name: Download target directories (3.2.1)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-3.1.3-${{ matrix.java }}
name: target-${{ matrix.os }}-3.2.1-${{ matrix.java }}

- name: Inflate target directories (3.1.3)
- name: Inflate target directories (3.2.1)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
11 changes: 4 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
lazy val scala212 = "2.12.17"
lazy val scala212 = "2.12.20"
lazy val scala213 = "2.13.10"
lazy val scala3 = "3.2.1"

Expand Down Expand Up @@ -103,7 +103,7 @@ lazy val srdf = project
circeGeneric,
circeParser,
fs2Core,
utils,
utils
// xercesImpl // required only for totalDigits/fractionDigits
// scalaLogging,
// scalaCollCompat,
Expand Down Expand Up @@ -171,10 +171,7 @@ lazy val mdocSettings = Seq(
mdocVariables := Map(
"VERSION" -> version.value
),
ScalaUnidoc / unidoc / unidocProjectFilter := inProjects(
srdf,
srdfJena,
srdf4j),
ScalaUnidoc / unidoc / unidocProjectFilter := inProjects(srdf, srdfJena, srdf4j),
ScalaUnidoc / unidoc / target := (LocalRootProject / baseDirectory).value / "website" / "static" / "api",
cleanFiles += (ScalaUnidoc / unidoc / target).value,
docusaurusCreateSite := docusaurusCreateSite.dependsOn(Compile / unidoc).value,
Expand Down Expand Up @@ -265,5 +262,5 @@ lazy val commonSettings = compilationSettings ++ sharedDependencies ++ Seq(
email = "[email protected]",
url = url("https://weso.labra.es")
)
),
)
)
Loading