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.13.10 #129

Open
wants to merge 2 commits into
base: main
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
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.8]
scala: [2.13.10]
java: [[email protected], [email protected]]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -58,18 +58,18 @@ jobs:
- name: Test
run: sbt ++${{ matrix.scala }} test

- if: matrix.scala == '2.13.8'
- if: matrix.scala == '2.13.10'
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6

- if: matrix.scala == '2.13.8'
- if: matrix.scala == '2.13.10'
run: gem update --system

- if: matrix.scala == '2.13.8'
- if: matrix.scala == '2.13.10'
run: gem install sass

- if: matrix.scala == '2.13.8'
- if: matrix.scala == '2.13.10'
run: gem install jekyll -v 4

- name: Compress target directories
Expand All @@ -88,7 +88,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.8]
scala: [2.13.10]
java: [[email protected]]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -114,12 +114,12 @@ jobs:
~/Library/Caches/Coursier/v1
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}

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

- name: Inflate target directories (2.13.8)
- name: Inflate target directories (2.13.10)
run: |
tar xf targets.tar
rm targets.tar
Expand All @@ -134,7 +134,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.8]
scala: [2.13.10]
java: [[email protected]]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.8]
scala: [2.13.10]
java: [[email protected]]
runs-on: ${{ matrix.os }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
val Java18 = "[email protected]"
val Java11 = "[email protected]"
val Scala213 = "2.13.8"
val Scala213 = "2.13.10"

import sbt.Keys.resolvers
enablePlugins(SonatypeCiReleasePlugin)
Global / onChangedBuildSource := ReloadOnSourceChanges

ThisBuild / mimaFailOnProblem := false
ThisBuild / mimaFailOnNoPrevious := false
ThisBuild / scalaVersion := "2.13.8"
ThisBuild / scalaVersion := "2.13.10"
ThisBuild / organization := "com.al333z"
ThisBuild / organizationName := "al333z"
ThisBuild / publishFullName := "Alessandro Zoffoli"
Expand Down