-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #229 from fp-in-bo/update/scala-library-2.12.15
Update scala-library to 2.12.15
- Loading branch information
Showing
2 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ jobs: | |
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
scala: [2.13.5, 2.12.10] | ||
scala: [2.13.5, 2.12.15] | ||
java: [[email protected], [email protected]] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
|
@@ -64,21 +64,21 @@ jobs: | |
- name: Stop docker containers | ||
run: docker-compose down | ||
|
||
- if: matrix.scala == '2.12.10' | ||
- if: matrix.scala == '2.12.15' | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 2.6 | ||
|
||
- if: matrix.scala == '2.12.10' | ||
- if: matrix.scala == '2.12.15' | ||
run: gem update --system | ||
|
||
- if: matrix.scala == '2.12.10' | ||
- if: matrix.scala == '2.12.15' | ||
run: gem install sass | ||
|
||
- if: matrix.scala == '2.12.10' | ||
- if: matrix.scala == '2.12.15' | ||
run: gem install jekyll -v 4 | ||
|
||
- if: matrix.scala == '2.12.10' | ||
- if: matrix.scala == '2.12.15' | ||
run: sbt ++${{ matrix.scala }} site/makeMicrosite | ||
|
||
- name: Compress target directories | ||
|
@@ -133,12 +133,12 @@ jobs: | |
tar xf targets.tar | ||
rm targets.tar | ||
- name: Download target directories (2.12.10) | ||
- name: Download target directories (2.12.15) | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: target-${{ matrix.os }}-2.12.10-${{ matrix.java }} | ||
name: target-${{ matrix.os }}-2.12.15-${{ matrix.java }} | ||
|
||
- name: Inflate target directories (2.12.10) | ||
- name: Inflate target directories (2.12.15) | ||
run: | | ||
tar xf targets.tar | ||
rm targets.tar | ||
|
@@ -153,7 +153,7 @@ jobs: | |
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
scala: [2.13.5, 2.12.10] | ||
scala: [2.13.5, 2.12.15] | ||
java: [[email protected]] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
|
@@ -215,12 +215,12 @@ jobs: | |
tar xf targets.tar | ||
rm targets.tar | ||
- name: Download target directories (2.12.10) | ||
- name: Download target directories (2.12.15) | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: target-${{ matrix.os }}-2.12.10-${{ matrix.java }} | ||
name: target-${{ matrix.os }}-2.12.15-${{ matrix.java }} | ||
|
||
- name: Inflate target directories (2.12.10) | ||
- name: Inflate target directories (2.12.15) | ||
run: | | ||
tar xf targets.tar | ||
rm targets.tar | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
val Scala213 = "2.13.5" | ||
val Scala212 = "2.12.10" | ||
val Scala212 = "2.12.15" | ||
val Java18 = "[email protected]" | ||
val Java11 = "[email protected]" | ||
|
||
|