Skip to content

Commit

Permalink
Updated sbt-sonatype plugin
Browse files Browse the repository at this point in the history
Summary:
At some point, our publish plugin started throwing timeout exceptions.
I hope that updating the plugin will resolve this issue as I saw that there are several commits that are changing timeouts behaviour.
**Design doc/spec**:
**Docs impact**: none

Test Plan:
Tried to do publish job but instead of sonatypeBundleRelease I did sonatypePrepare; sonatypeBundleUpload and sonatypeClose (everything without the last step which actually creates a release) https://grizzly.internal.memcompute.com/differential/diff/174097/

Also, I tested full release process with my sepparate testing repo

Reviewers: carl, pmishchenko-ua

Reviewed By: pmishchenko-ua

Subscribers: engineering-list

JIRA Issues: PLAT-5983

Differential Revision: https://grizzly.internal.memcompute.com/D53719
  • Loading branch information
AdalbertMemSQL committed Dec 20, 2021
1 parent 53ba212 commit 83db0e9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,15 @@ jobs:
- run:
name: Publish Spark 3.0.0
command: |
sbt ++2.12.12 -Dspark.version=3.0.0 publish sonatypePrepare sonatypeBundleUpload sonatypeRelease
sbt ++2.12.12 -Dspark.version=3.0.0 publishSigned sonatypeBundleRelease
- run:
name: Publish Spark 3.1.0
command: |
sbt ++2.12.12 -Dspark.version=3.1.0 publish sonatypePrepare sonatypeBundleUpload sonatypeRelease
sbt ++2.12.12 -Dspark.version=3.1.0 publishSigned sonatypeBundleRelease
- run:
name: Publish Spark 3.2.0
command: |
sbt ++2.12.12 -Dspark.version=3.2.0 publish sonatypePrepare sonatypeBundleUpload sonatypeRelease
sbt ++2.12.12 -Dspark.version=3.2.0 publishSigned sonatypeBundleRelease
workflows:
test:
Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.8.1")
addSbtPlugin("io.crashbox" % "sbt-gpg" % "0.2.1")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.6")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.1")

0 comments on commit 83db0e9

Please sign in to comment.