This repository has been archived by the owner on Jul 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
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 #35 from lorandszakacs/upgrades
Assorted upgrades
- Loading branch information
Showing
4 changed files
with
27 additions
and
21 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 |
---|---|---|
|
@@ -9,9 +9,9 @@ name: Continuous Integration | |
|
||
on: | ||
pull_request: | ||
branches: ['*'] | ||
branches: ['**'] | ||
push: | ||
branches: ['*'] | ||
branches: ['**'] | ||
tags: [v*] | ||
|
||
env: | ||
|
@@ -26,7 +26,7 @@ jobs: | |
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
scala: [3.0.0, 2.13.5, 2.12.13] | ||
scala: [3.0.0, 2.13.6, 2.12.14] | ||
java: [[email protected]] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
|
@@ -53,9 +53,9 @@ jobs: | |
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} | ||
|
||
- name: Check that workflows are up to date | ||
run: sbt ++${{ matrix.scala }} githubWorkflowCheck | ||
run: sbt --client '++${{ matrix.scala }}; githubWorkflowCheck' | ||
|
||
- run: sbt ++${{ matrix.scala }} ci | ||
- run: sbt --client '++${{ matrix.scala }}; ci' | ||
|
||
- name: Compress target directories | ||
run: tar cf targets.tar target sprout/js/target sprout/jvm/target project/target | ||
|
@@ -109,27 +109,27 @@ jobs: | |
tar xf targets.tar | ||
rm targets.tar | ||
- name: Download target directories (2.13.5) | ||
- name: Download target directories (2.13.6) | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: target-${{ matrix.os }}-2.13.5-${{ matrix.java }} | ||
name: target-${{ matrix.os }}-2.13.6-${{ matrix.java }} | ||
|
||
- name: Inflate target directories (2.13.5) | ||
- name: Inflate target directories (2.13.6) | ||
run: | | ||
tar xf targets.tar | ||
rm targets.tar | ||
- name: Download target directories (2.12.13) | ||
- name: Download target directories (2.12.14) | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: target-${{ matrix.os }}-2.12.13-${{ matrix.java }} | ||
name: target-${{ matrix.os }}-2.12.14-${{ matrix.java }} | ||
|
||
- name: Inflate target directories (2.12.13) | ||
- name: Inflate target directories (2.12.14) | ||
run: | | ||
tar xf targets.tar | ||
rm targets.tar | ||
- name: Import signing key | ||
run: echo $PGP_SECRET | base64 -d | gpg --import | ||
|
||
- run: sbt ++${{ matrix.scala }} release | ||
- run: sbt --client '++${{ matrix.scala }}; release' |
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
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
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