Skip to content
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
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
java-version: [8, 11, 17]
java-version: [11, 17]
runs-on: ${{ matrix.os }}
# continue-on-error: ${{ matrix.os == 'windows-latest' }}

Expand All @@ -32,9 +32,9 @@ jobs:
java-version: ${{ matrix.java-version }}
distribution: temurin

- run: ./millw -i -k -d __.testCached + __.scoverage.xmlReport + __.publishLocal testRepo
- run: ./millw -i -k -d -j 0 __.testCached + __.scoverage.xmlReport + __.publishLocal --localIvyRepo testRepo
if: matrix.os != 'windows-latest'
- run: .\millw.bat -i -k -d __.testCached + __.scoverage.xmlReport + __.publishLocal --localIvyRepo testRepo
- run: .\millw.bat -i -k -d -j 0 __.testCached + __.scoverage.xmlReport + __.publishLocal --localIvyRepo testRepo
if: matrix.os == 'windows-latest'

- name: Upload scoverage reports to codecov.io
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
gpg --list-secret-keys --keyid-format LONG

- name: Publish to Maven Central
run: MILL_VERSION="0.12.14" ./millw -i --import "ivy:com.lihaoyi::mill-contrib-sonatypecentral:" mill.contrib.sonatypecentral.SonatypeCentralPublishModule/publishAll --publishArtifacts __.publishArtifacts
run: ./millw -i --import "ivy:com.lihaoyi::mill-contrib-sonatypecentral:" mill.contrib.sonatypecentral.SonatypeCentralPublishModule/publishAll --publishArtifacts __.publishArtifacts
env:
MILL_PGP_PASSPHRASE: ${{ secrets.GPG_SECRET_KEY_PASS }}
# MILL_PGP_SECRET_BASE64: ${{ secrets.GPG_SECRET_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion .mill-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.13
0.12.15
2 changes: 1 addition & 1 deletion build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ trait IntegrationtestCross extends CrossScalaModule with PublishModule with Scov

override def scoverageVersion = Deps.scoverageVersion

object test extends ScalaModuleTests with ScoverageTests with TestModule.ScalaTest {
object test extends ScalaTests with ScoverageTests with TestModule.ScalaTest {
override def ivyDeps = Agg(
ivy"org.scalatest::scalatest:3.2.19",
ivy"org.scalatestplus::scalacheck-1-16:3.2.14.0"
Expand Down
Loading