You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[backport] Revert back to Scalacheck 1.11.x, fixes to bootstrap script
Scalacheck 1.12.x cross-compiles to JS and will take more work to
integrate.
Make sure we never attempt to publish scalacheck to sonatype.
Force checkout module refs in case of dirty workspace.
Backport of f238586
(git fetch "https://github.com/$1/$2.git"$3&& git checkout -q FETCH_HEAD) #|| git checkout -q $3 # || fallback is for local testing on tag
144
+
(git fetch "https://github.com/$1/$2.git"$3&& git checkout -fq FETCH_HEAD) #|| git checkout -fq $3 # || fallback is for local testing on tag
145
145
git reset --hard
146
146
}
147
147
@@ -291,18 +291,21 @@ buildActorsMigration(){
291
291
fi
292
292
}
293
293
294
+
# should only be called with publishTasks publishing to private-repo
sbtBuild 'set version := "'$SCALACHECK_VER'"''set VersionKeys.scalaParserCombinatorsVersion := "'$PARSERS_VER'"'$clean$publishPrivateTask# test times out NOTE: never published to sonatype
300
+
sbtBuild 'set version := "'$SCALACHECK_VER'"''set VersionKeys.scalaParserCombinatorsVersion := "'$PARSERS_VER'"'$cleanpublish# test times out NOTE: never published to sonatype
300
301
SCALACHECK_BUILT="yes"
301
302
fi
302
303
}
303
304
304
305
# build modules, using ${buildTasks[@]} (except for Scalacheck, which is hard-coded to publish to private-repo)
305
306
buildModules() {
307
+
publishTasks=('set credentials += Credentials(Path.userHome / ".credentials-private-repo")'"set every publishTo := Some(\"private-repo\" at \"$releaseTempRepoUrl\")")
0 commit comments