Skip to content

Commit

Permalink
Increase timeouts for publishing
Browse files Browse the repository at this point in the history
Sonatype often takes a while to close the staging repository.
  • Loading branch information
jackkoenig committed Dec 21, 2023
1 parent 05d43c2 commit 186d96d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ trait ChipsAlliancePublishModule extends PublishModule {
// Helper for publishing, sets values so we don't have to set them on the command-line
def publishSigned() = T.command {
val signed = true
val readTimeout: Int = 60000
val connectTimeout: Int = 5000
val awaitTimeout: Int = 120 * 1000
val readTimeout: Int = 2 * 60 * 1000
val connectTimeout: Int = 10 * 1000
val awaitTimeout: Int = 10 * 60 * 1000
val stagingRelease: Boolean = true
val release = !isSnapshot()
// We cannot call publish from a Command so we inline it, derived from:
Expand Down

0 comments on commit 186d96d

Please sign in to comment.