-
Notifications
You must be signed in to change notification settings - Fork 24
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 #169 from armanbilge/topic/sbt-typelevel
Migrate to sbt-typelevel
- Loading branch information
Showing
3 changed files
with
119 additions
and
62 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 |
---|---|---|
|
@@ -15,10 +15,12 @@ on: | |
tags: [v*] | ||
|
||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | ||
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 }} | ||
|
||
jobs: | ||
build: | ||
|
@@ -27,18 +29,30 @@ jobs: | |
matrix: | ||
os: [ubuntu-latest] | ||
scala: [3.1.0, 2.12.15, 2.13.7] | ||
java: [[email protected]] | ||
java: [temurin@8] | ||
project: [rootJS, rootJVM] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout current branch (full) | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup Java and Scala | ||
uses: olafurpg/setup-scala@v13 | ||
- name: Download Java (temurin@8) | ||
id: download-java-temurin-8 | ||
if: matrix.java == 'temurin@8' | ||
uses: typelevel/download-java@v1 | ||
with: | ||
java-version: ${{ matrix.java }} | ||
distribution: temurin | ||
java-version: 8 | ||
|
||
- name: Setup Java (temurin@8) | ||
if: matrix.java == 'temurin@8' | ||
uses: actions/setup-java@v2 | ||
with: | ||
distribution: jdkfile | ||
java-version: 8 | ||
jdkFile: ${{ steps.download-java-temurin-8.outputs.jdkFile }} | ||
|
||
- name: Cache sbt | ||
uses: actions/cache@v2 | ||
|
@@ -53,17 +67,40 @@ 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 'project ${{ matrix.project }}' '++${{ matrix.scala }}' 'project /' githubWorkflowCheck | ||
|
||
- name: Check headers and formatting | ||
if: matrix.java == 'temurin@8' | ||
run: sbt 'project ${{ matrix.project }}' '++${{ matrix.scala }}' headerCheckAll scalafmtCheckAll 'project /' scalafmtSbtCheck | ||
|
||
- name: scalaJSLink | ||
if: matrix.project == 'rootJS' | ||
run: sbt 'project ${{ matrix.project }}' '++${{ matrix.scala }}' Test/scalaJSLinkerResult | ||
|
||
- name: Test | ||
run: sbt 'project ${{ matrix.project }}' '++${{ matrix.scala }}' test | ||
|
||
- run: sbt ++${{ matrix.scala }} ci | ||
- name: Check binary compatibility | ||
if: matrix.java == 'temurin@8' | ||
run: sbt 'project ${{ matrix.project }}' '++${{ matrix.scala }}' mimaReportBinaryIssues | ||
|
||
- name: Generate API documentation | ||
if: matrix.java == 'temurin@8' | ||
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/main') | ||
run: mkdir -p target .js/target munit/jvm/target core/js/target core/jvm/target .jvm/target .native/target munit/js/target project/target | ||
|
||
- name: Compress target directories | ||
run: tar cf targets.tar target munit/jvm/target core/js/target core/jvm/target munit/js/target project/target | ||
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main') | ||
run: tar cf targets.tar target .js/target munit/jvm/target core/js/target core/jvm/target .jvm/target .native/target munit/js/target project/target | ||
|
||
- name: Upload target directories | ||
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main') | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: target-${{ matrix.os }}-${{ matrix.scala }}-${{ matrix.java }} | ||
name: target-${{ matrix.os }}-${{ matrix.java }}-${{ matrix.scala }}-${{ matrix.project }} | ||
path: targets.tar | ||
|
||
publish: | ||
|
@@ -74,18 +111,29 @@ jobs: | |
matrix: | ||
os: [ubuntu-latest] | ||
scala: [2.13.7] | ||
java: [adopt@1.8] | ||
java: [temurin@8] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout current branch (full) | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup Java and Scala | ||
uses: olafurpg/setup-scala@v13 | ||
- name: Download Java (temurin@8) | ||
id: download-java-temurin-8 | ||
if: matrix.java == 'temurin@8' | ||
uses: typelevel/download-java@v1 | ||
with: | ||
java-version: ${{ matrix.java }} | ||
distribution: temurin | ||
java-version: 8 | ||
|
||
- name: Setup Java (temurin@8) | ||
if: matrix.java == 'temurin@8' | ||
uses: actions/setup-java@v2 | ||
with: | ||
distribution: jdkfile | ||
java-version: 8 | ||
jdkFile: ${{ steps.download-java-temurin-8.outputs.jdkFile }} | ||
|
||
- name: Cache sbt | ||
uses: actions/cache@v2 | ||
|
@@ -99,37 +147,76 @@ jobs: | |
~/Library/Caches/Coursier/v1 | ||
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} | ||
|
||
- name: Download target directories (3.1.0) | ||
- name: Download target directories (3.1.0, rootJS) | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: target-${{ matrix.os }}-${{ matrix.java }}-3.1.0-rootJS | ||
|
||
- name: Inflate target directories (3.1.0, rootJS) | ||
run: | | ||
tar xf targets.tar | ||
rm targets.tar | ||
- name: Download target directories (3.1.0, rootJVM) | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: target-${{ matrix.os }}-${{ matrix.java }}-3.1.0-rootJVM | ||
|
||
- name: Inflate target directories (3.1.0, rootJVM) | ||
run: | | ||
tar xf targets.tar | ||
rm targets.tar | ||
- name: Download target directories (2.12.15, rootJS) | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: target-${{ matrix.os }}-3.1.0-${{ matrix.java }} | ||
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.15-rootJS | ||
|
||
- name: Inflate target directories (3.1.0) | ||
- name: Inflate target directories (2.12.15, rootJS) | ||
run: | | ||
tar xf targets.tar | ||
rm targets.tar | ||
- name: Download target directories (2.12.15) | ||
- name: Download target directories (2.12.15, rootJVM) | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: target-${{ matrix.os }}-2.12.15-${{ matrix.java }} | ||
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.15-rootJVM | ||
|
||
- name: Inflate target directories (2.12.15) | ||
- name: Inflate target directories (2.12.15, rootJVM) | ||
run: | | ||
tar xf targets.tar | ||
rm targets.tar | ||
- name: Download target directories (2.13.7) | ||
- name: Download target directories (2.13.7, rootJS) | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: target-${{ matrix.os }}-2.13.7-${{ matrix.java }} | ||
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.7-rootJS | ||
|
||
- name: Inflate target directories (2.13.7) | ||
- name: Inflate target directories (2.13.7, rootJS) | ||
run: | | ||
tar xf targets.tar | ||
rm targets.tar | ||
- name: Download target directories (2.13.7, rootJVM) | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.7-rootJVM | ||
|
||
- name: Inflate target directories (2.13.7, rootJVM) | ||
run: | | ||
tar xf targets.tar | ||
rm targets.tar | ||
- name: Import signing key | ||
run: echo $PGP_SECRET | base64 -d | gpg --import | ||
if: env.PGP_SECRET != '' && env.PGP_PASSPHRASE == '' | ||
run: echo $PGP_SECRET | base64 -di | gpg --import | ||
|
||
- name: Import signing key and strip passphrase | ||
if: env.PGP_SECRET != '' && env.PGP_PASSPHRASE != '' | ||
run: | | ||
echo "$PGP_SECRET" | base64 -di > /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) | ||
- run: sbt ++${{ matrix.scala }} release | ||
- name: Publish | ||
run: sbt '++${{ matrix.scala }}' tlRelease |
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,41 +1,17 @@ | ||
ThisBuild / baseVersion := "1.0" | ||
ThisBuild / tlBaseVersion := "1.0" | ||
|
||
ThisBuild / organization := "org.typelevel" | ||
ThisBuild / organizationName := "Typelevel" | ||
|
||
ThisBuild / publishGithubUser := "mpilquist" | ||
ThisBuild / publishFullName := "Michael Pilquist" | ||
ThisBuild / developers += tlGitHubDev("mpilquist", "Michael Pilquist") | ||
ThisBuild / startYear := Some(2021) | ||
|
||
ThisBuild / crossScalaVersions := List("3.1.0", "2.12.15", "2.13.7") | ||
ThisBuild / tlVersionIntroduced := Map("3" -> "1.0.2") | ||
|
||
ThisBuild / spiewakCiReleaseSnapshots := true | ||
|
||
ThisBuild / spiewakMainBranches := List("main") | ||
|
||
ThisBuild / homepage := Some(url("https://github.com/typelevel/scalacheck-effect")) | ||
|
||
ThisBuild / licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")) | ||
|
||
ThisBuild / scalafmtOnCompile := true | ||
|
||
ThisBuild / scmInfo := Some( | ||
ScmInfo( | ||
url("https://github.com/typelevel/scalacheck-effect"), | ||
"[email protected]:typelevel/scalacheck-effect.git" | ||
) | ||
) | ||
|
||
lazy val root = project | ||
.in(file(".")) | ||
.aggregate(core.jvm, core.js, munit.jvm, munit.js) | ||
.enablePlugins(NoPublishPlugin, SonatypeCiReleasePlugin) | ||
lazy val root = tlCrossRootProject.aggregate(core, munit) | ||
|
||
lazy val core = crossProject(JSPlatform, JVMPlatform) | ||
.settings( | ||
name := "scalacheck-effect", | ||
Compile / scalacOptions ~= { | ||
_.filterNot(_ == "-Xfatal-warnings") | ||
} // we need to turn this off because scalacheck's API uses Stream, which is deprecated | ||
tlFatalWarnings := false | ||
) | ||
.settings( | ||
libraryDependencies ++= List( | ||
|
@@ -49,9 +25,6 @@ lazy val munit = crossProject(JSPlatform, JVMPlatform) | |
name := "scalacheck-effect-munit", | ||
testFrameworks += new TestFramework("munit.Framework") | ||
) | ||
.jsSettings( | ||
scalaJSLinkerConfig ~= (_.withModuleKind(ModuleKind.CommonJSModule)) | ||
) | ||
.dependsOn(core) | ||
.settings( | ||
libraryDependencies ++= List( | ||
|
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,2 @@ | ||
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.8.0") | ||
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.1.0") | ||
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.5") | ||
addSbtPlugin("com.codecommit" % "sbt-spiewak-sonatype" % "0.22.1") | ||
addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.13.0") | ||
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.4.6") |