forked from soc/scala-java-time
-
Notifications
You must be signed in to change notification settings - Fork 33
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 versions #509
Merged
Merged
Update versions #509
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
07290f6
Update versions
sideeffffect 999bdea
sbt
sideeffffect 4a32a8d
correto
sideeffffect 4af70bd
correto
sideeffffect 2daeffb
Scala Native 0.4.17
sideeffffect 423ae26
sbt-typelevel 0.7.1
sideeffffect f0287fd
remove -Xfatal-warnings
sideeffffect 6ef4965
no fatal warnings
sideeffffect ba16ab0
githubWorkflowGenerate
sideeffffect f4d36b2
Java 11
sideeffffect 62157e2
Scala.js: Throwable instead of JavaScriptException
sideeffffect 211e749
roll back -Xfatal-warnings
sideeffffect e390a5e
bring back sbt-typelevel
sideeffffect ac7f7f1
Revert "bring back sbt-typelevel"
sideeffffect File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -15,105 +15,87 @@ on: | |
tags: [v*] | ||
|
||
env: | ||
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }} | ||
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | ||
SONATYPE_CREDENTIAL_HOST: ${{ secrets.SONATYPE_CREDENTIAL_HOST }} | ||
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | ||
PGP_SECRET: ${{ secrets.PGP_SECRET }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
|
||
concurrency: | ||
group: ${{ github.workflow }} @ ${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
name: Build and Test | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
scala: [2.12.17, 2.13.10, 3.2.1] | ||
java: [temurin@11] | ||
scala: [2.12, 2.13, 3] | ||
java: [corretto@11] | ||
project: [rootJS, rootJVM, rootNative] | ||
include: | ||
- scala: 3.2.1 | ||
java: temurin@11 | ||
- scala: 3 | ||
java: corretto@11 | ||
project: rootNative | ||
os: macos-latest | ||
exclude: | ||
- scala: 3.2.1 | ||
- scala: 3 | ||
project: rootJVM | ||
- scala: 3.2.1 | ||
- scala: 3 | ||
project: rootNative | ||
os: ubuntu-latest | ||
runs-on: ${{ matrix.os }} | ||
timeout-minutes: 60 | ||
steps: | ||
- name: Checkout current branch (full) | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Download Java (temurin@11) | ||
id: download-java-temurin-11 | ||
if: matrix.java == 'temurin@11' | ||
uses: typelevel/download-java@v1 | ||
with: | ||
distribution: temurin | ||
java-version: 11 | ||
|
||
- name: Setup Java (temurin@11) | ||
if: matrix.java == 'temurin@11' | ||
uses: actions/setup-java@v2 | ||
- name: Setup Java (corretto@11) | ||
id: setup-java-corretto-11 | ||
if: matrix.java == 'corretto@11' | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: jdkfile | ||
distribution: corretto | ||
java-version: 11 | ||
jdkFile: ${{ steps.download-java-temurin-11.outputs.jdkFile }} | ||
cache: sbt | ||
|
||
- name: Cache sbt | ||
uses: actions/cache@v2 | ||
with: | ||
path: | | ||
~/.sbt | ||
~/.ivy2/cache | ||
~/.coursier/cache/v1 | ||
~/.cache/coursier/v1 | ||
~/AppData/Local/Coursier/Cache/v1 | ||
~/Library/Caches/Coursier/v1 | ||
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} | ||
- name: sbt update | ||
if: matrix.java == 'corretto@11' && steps.setup-java-corretto-11.outputs.cache-hit == 'false' | ||
run: ./sbt +update | ||
|
||
- name: Check that workflows are up to date | ||
run: sbt githubWorkflowCheck | ||
|
||
- name: Check formatting | ||
if: matrix.java == 'temurin@11' | ||
run: sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' scalafmtCheckAll 'project /' scalafmtSbtCheck | ||
run: ./sbt githubWorkflowCheck | ||
|
||
- name: scalaJSLink | ||
if: matrix.project == 'rootJS' | ||
run: sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' Test/scalaJSLinkerResult | ||
run: ./sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' Test/scalaJSLinkerResult | ||
|
||
- name: nativeLink | ||
if: matrix.project == 'rootNative' | ||
run: sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' Test/nativeLink | ||
run: ./sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' Test/nativeLink | ||
|
||
- name: Test | ||
run: sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' test | ||
run: ./sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' test | ||
|
||
- name: Check binary compatibility | ||
if: matrix.java == 'temurin@11' | ||
run: sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' mimaReportBinaryIssues | ||
if: matrix.java == 'corretto@11' && matrix.os == 'ubuntu-latest' | ||
run: ./sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' mimaReportBinaryIssues | ||
|
||
- name: Generate API documentation | ||
if: matrix.java == 'temurin@11' | ||
run: sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' doc | ||
if: matrix.java == 'corretto@11' && matrix.os == 'ubuntu-latest' | ||
run: ./sbt 'project ${{ matrix.project }}' '++ ${{ matrix.scala }}' doc | ||
|
||
- name: Make target directories | ||
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/master') | ||
run: mkdir -p target .js/target core/native/target tzdb/js/target core/js/target core/jvm/target tests/js/target .jvm/target .native/target demo/jvm/target tests/jvm/target demo/native/target tzdb/jvm/target tzdb/native/target tests/native/target demo/js/target project/target | ||
run: mkdir -p core/native/target tzdb/js/target core/js/target core/jvm/target tzdb/jvm/target tzdb/native/target project/target | ||
|
||
- name: Compress target directories | ||
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/master') | ||
run: tar cf targets.tar target .js/target core/native/target tzdb/js/target core/js/target core/jvm/target tests/js/target .jvm/target .native/target demo/jvm/target tests/jvm/target demo/native/target tzdb/jvm/target tzdb/native/target tests/native/target demo/js/target project/target | ||
run: tar cf targets.tar core/native/target tzdb/js/target core/js/target core/jvm/target tzdb/jvm/target tzdb/native/target project/target | ||
|
||
- name: Upload target directories | ||
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/master') | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: target-${{ matrix.os }}-${{ matrix.java }}-${{ matrix.scala }}-${{ matrix.project }} | ||
path: targets.tar | ||
|
@@ -125,123 +107,150 @@ jobs: | |
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
scala: [2.13.10] | ||
java: [temurin@11] | ||
java: [corretto@11] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout current branch (full) | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Download Java (temurin@11) | ||
id: download-java-temurin-11 | ||
if: matrix.java == 'temurin@11' | ||
uses: typelevel/download-java@v1 | ||
- name: Setup Java (corretto@11) | ||
id: setup-java-corretto-11 | ||
if: matrix.java == 'corretto@11' | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: temurin | ||
distribution: corretto | ||
java-version: 11 | ||
cache: sbt | ||
|
||
- name: Setup Java (temurin@11) | ||
if: matrix.java == 'temurin@11' | ||
uses: actions/setup-java@v2 | ||
with: | ||
distribution: jdkfile | ||
java-version: 11 | ||
jdkFile: ${{ steps.download-java-temurin-11.outputs.jdkFile }} | ||
- name: sbt update | ||
if: matrix.java == 'corretto@11' && steps.setup-java-corretto-11.outputs.cache-hit == 'false' | ||
run: ./sbt +update | ||
|
||
- name: Cache sbt | ||
uses: actions/cache@v2 | ||
- name: Download target directories (2.12, rootJS) | ||
uses: actions/download-artifact@v4 | ||
with: | ||
path: | | ||
~/.sbt | ||
~/.ivy2/cache | ||
~/.coursier/cache/v1 | ||
~/.cache/coursier/v1 | ||
~/AppData/Local/Coursier/Cache/v1 | ||
~/Library/Caches/Coursier/v1 | ||
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} | ||
|
||
- name: Download target directories (2.12.17, rootJS) | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.17-rootJS | ||
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12-rootJS | ||
|
||
- name: Inflate target directories (2.12.17, rootJS) | ||
- name: Inflate target directories (2.12, rootJS) | ||
run: | | ||
tar xf targets.tar | ||
rm targets.tar | ||
|
||
- name: Download target directories (2.12.17, rootJVM) | ||
uses: actions/download-artifact@v2 | ||
- name: Download target directories (2.12, rootJVM) | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.17-rootJVM | ||
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12-rootJVM | ||
|
||
- name: Inflate target directories (2.12.17, rootJVM) | ||
- name: Inflate target directories (2.12, rootJVM) | ||
run: | | ||
tar xf targets.tar | ||
rm targets.tar | ||
|
||
- name: Download target directories (2.12.17, rootNative) | ||
uses: actions/download-artifact@v2 | ||
- name: Download target directories (2.12, rootNative) | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.17-rootNative | ||
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12-rootNative | ||
|
||
- name: Inflate target directories (2.12.17, rootNative) | ||
- name: Inflate target directories (2.12, rootNative) | ||
run: | | ||
tar xf targets.tar | ||
rm targets.tar | ||
|
||
- name: Download target directories (2.13.10, rootJS) | ||
uses: actions/download-artifact@v2 | ||
- name: Download target directories (2.13, rootJS) | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.10-rootJS | ||
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13-rootJS | ||
|
||
- name: Inflate target directories (2.13.10, rootJS) | ||
- name: Inflate target directories (2.13, rootJS) | ||
run: | | ||
tar xf targets.tar | ||
rm targets.tar | ||
|
||
- name: Download target directories (2.13.10, rootJVM) | ||
uses: actions/download-artifact@v2 | ||
- name: Download target directories (2.13, rootJVM) | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.10-rootJVM | ||
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13-rootJVM | ||
|
||
- name: Inflate target directories (2.13.10, rootJVM) | ||
- name: Inflate target directories (2.13, rootJVM) | ||
run: | | ||
tar xf targets.tar | ||
rm targets.tar | ||
|
||
- name: Download target directories (2.13.10, rootNative) | ||
uses: actions/download-artifact@v2 | ||
- name: Download target directories (2.13, rootNative) | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.10-rootNative | ||
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13-rootNative | ||
|
||
- name: Inflate target directories (2.13.10, rootNative) | ||
- name: Inflate target directories (2.13, rootNative) | ||
run: | | ||
tar xf targets.tar | ||
rm targets.tar | ||
|
||
- name: Download target directories (3.2.1, rootJS) | ||
uses: actions/download-artifact@v2 | ||
- name: Download target directories (3, rootJS) | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.1-rootJS | ||
name: target-${{ matrix.os }}-${{ matrix.java }}-3-rootJS | ||
|
||
- name: Inflate target directories (3.2.1, rootJS) | ||
- name: Inflate target directories (3, rootJS) | ||
run: | | ||
tar xf targets.tar | ||
rm targets.tar | ||
|
||
- name: Import signing key | ||
if: env.PGP_SECRET != '' && env.PGP_PASSPHRASE == '' | ||
run: echo $PGP_SECRET | base64 -di | gpg --import | ||
env: | ||
PGP_SECRET: ${{ secrets.PGP_SECRET }} | ||
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }} | ||
run: echo $PGP_SECRET | base64 -d -i - | gpg --import | ||
|
||
- name: Import signing key and strip passphrase | ||
if: env.PGP_SECRET != '' && env.PGP_PASSPHRASE != '' | ||
env: | ||
PGP_SECRET: ${{ secrets.PGP_SECRET }} | ||
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }} | ||
run: | | ||
echo "$PGP_SECRET" | base64 -di > /tmp/signing-key.gpg | ||
echo "$PGP_SECRET" | base64 -d -i - > /tmp/signing-key.gpg | ||
echo "$PGP_PASSPHRASE" | gpg --pinentry-mode loopback --passphrase-fd 0 --import /tmp/signing-key.gpg | ||
(echo "$PGP_PASSPHRASE"; echo; echo) | gpg --command-fd 0 --pinentry-mode loopback --change-passphrase $(gpg --list-secret-keys --with-colons 2> /dev/null | grep '^sec:' | cut --delimiter ':' --fields 5 | tail -n 1) | ||
|
||
- name: Publish | ||
run: sbt '++ ${{ matrix.scala }}' tlRelease | ||
env: | ||
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah I see they are defined here |
||
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | ||
SONATYPE_CREDENTIAL_HOST: ${{ secrets.SONATYPE_CREDENTIAL_HOST }} | ||
run: ./sbt tlCiRelease | ||
|
||
dependency-submission: | ||
name: Submit Dependencies | ||
if: github.event_name != 'pull_request' | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
java: [corretto@11] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout current branch (full) | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup Java (corretto@11) | ||
id: setup-java-corretto-11 | ||
if: matrix.java == 'corretto@11' | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: corretto | ||
java-version: 11 | ||
cache: sbt | ||
|
||
- name: sbt update | ||
if: matrix.java == 'corretto@11' && steps.setup-java-corretto-11.outputs.cache-hit == 'false' | ||
run: ./sbt +update | ||
|
||
- name: Submit Dependencies | ||
uses: scalacenter/sbt-dependency-submission@v2 | ||
with: | ||
modules-ignore: rootjs_2.12 rootjs_2.13 rootjs_3 tests_sjs1_2.12 tests_sjs1_2.13 tests_sjs1_3 rootjvm_2.12 rootjvm_2.13 rootjvm_3 rootnative_2.12 rootnative_2.13 rootnative_3 demo_2.12 demo_2.13 demo_3 tests_2.12 tests_2.13 tests_3 demo_native0.4_2.12 demo_native0.4_2.13 demo_native0.4_3 tests_native0.4_2.12 tests_native0.4_2.13 tests_native0.4_3 demo_sjs1_2.12 demo_sjs1_2.13 demo_sjs1_3 | ||
configs-ignore: test scala-tool scala-doc-tool test-internal |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
sbt.version=1.8.0 | ||
sbt.version=1.10.0 |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These need to be included to do publication I think