Giter VIP home page Giter VIP logo

Comments (18)

seglo avatar seglo commented on August 15, 2024

The Akka team used rsync to publish documentation assets to a Lightbend maintained server (gustav). Java snapshots were published to maven repositories, originally a bintray repo, and then the actual sonatype snapshots repo when bintray went away. I briefly considered repurposing the Publish and sbt-publish-rsync infra, but when I found Apache Arrow's nightlies implementation with a GitHub Action I opted to use it because the precedent was already established by another Apache project and I liked that it was setup to automatically truncate the number of snapshots kept on nightlies.

One of the issues with Akka's current snapshot publishing is that snapshots are available indefinitely until they're deleted manually or until the sonatype infra team decides to do some cleanup, Arrow's solution to keep the last 30 versions seemed like a nice solution. To achieve the same thing using sbt-publish-rsync would require some customization either in the form of a shell script sbt commands (i.e. steps in an sbt-release setup), or customization of sbt-publish-rsync. I think that given publishing snapshots to nightlies is realistically only going to be done by the Pekko project there's not a lot of value in making the process portable.

I think we should drop the existing rsync functionality found in the project infra since it no longer serves a purpose.

from pekko.

mdedetrich avatar mdedetrich commented on August 15, 2024

Thanks, after thinking about this I agree with your conclusion to just remove sbt-publish-rsync. There may be a use for it later down the track (if I can figure out the 30 day expiry) but for now its far simpler to just leave your solution.

There is also the fact that implementing this in sbt also requires a workaround due to the fact that sbt only currently allows to publish to one repo, so you would have to do something like https://stackoverflow.com/a/21032721

from pekko.

pjfanning avatar pjfanning commented on August 15, 2024

I like the current pekko nightly solution. One minor quibble is that the version numbers for Scala 2.12 jars differ from the 2.13 jars. Likewise, for Scala 3 jars.

from pekko.

mdedetrich avatar mdedetrich commented on August 15, 2024

I like the current pekko nightly solution. One minor quibble is that the version numbers for Scala 2.12 jars differ from the 2.13 jars. Likewise, for Scala 3 jars.

Are you talking about the artifact prefixes? If so this is intentional, its how Scala deals with binary compatibility

from pekko.

pjfanning avatar pjfanning commented on August 15, 2024

The most recent Scala 2.13 jars are 0.0.0+26529-29e5cf4b+20230116-1205-SNAPSHOT
https://nightlies.apache.org/pekko/snapshots/org/apache/pekko/pekko-actor_2.13/

The most recent Scala 2.12 jars are 0.0.0+26529-29e5cf4b-SNAPSHOT
https://nightlies.apache.org/pekko/snapshots/org/apache/pekko/pekko-actor_2.12/

The most recent Scala 3 jars are 0.0.0+26529-29e5cf4b+20230116-1213-SNAPSHOT
https://nightlies.apache.org/pekko/snapshots/org/apache/pekko/pekko-actor_3/

from pekko.

mdedetrich avatar mdedetrich commented on August 15, 2024

Ah I see what you mean now, its the version numbers being off (i.e. different) for the same single run of publish. We should probably make an issue for this because its going to create confusion for end users.

from pekko.

seglo avatar seglo commented on August 15, 2024

The only difference is the timestamp component of the version. I think it's because the publish command is a cross-build task +publishM2 and I guess the timestamp is derived for each version of Scala. We could customize the version format to drop that component if we want them to be consistent, but I think the timestamp is useful when you're experimenting locally and you don't have local commits yet to differentiate versions.

from pekko.

mdedetrich avatar mdedetrich commented on August 15, 2024

The principled solution would be the ability to parameterize the timestamp as an input in the publish command so you only generate the timestamp once (i.e. when just before publish is executed) and then feed it into the publish command so the timestamp is consistent across versions.

I don't know if this is possible in sbt especially with the usage of +<command> for cross publishing.

but I think the timestamp is useful when you're experimenting locally and you don't have local commits yet to differentiate versions.

There is truth to this but I would assume that if you are publishing locally you would use publishLocal and at least personally for me I don't care about the timestamp as I am only interested in using the latest version as its an iterative developer flow with quick turnaround

from pekko.

seglo avatar seglo commented on August 15, 2024

I found a stack overflow answer that has a recipe for pushing the timestamp to the filesystem and reading it across builds. https://stackoverflow.com/questions/21053785/setting-unique-snapshot-version-when-cross-building-in-sbt

from pekko.

mdedetrich avatar mdedetrich commented on August 15, 2024

I found a stack overflow answer that has a recipe for pushing the timestamp to the filesystem and reading it across builds. https://stackoverflow.com/questions/21053785/setting-unique-snapshot-version-when-cross-building-in-sbt

Not the nicest solution but it works and is a nice improvement, ill make an issue for it

from pekko.

seglo avatar seglo commented on August 15, 2024

There is truth to this but I would assume that if you are publishing locally you would use publishLocal and at least personally for me I don't care about the timestamp as I am only interested in using the latest version as its an iterative developer flow with quick turnaround

Yes, it's extremely anecdotal but it is something I've done before!

I think in general the timestamp is nice to have for reference sake, at least the date component is.

from pekko.

jrudolph avatar jrudolph commented on August 15, 2024

Usually, the timestamp is only added when the workspace is not clean, so we need to figure out why that's the case. Otherwise, using the git describe output (as usual) should give enough details to order snapshot releases and associate them with the corresponding commit.

from pekko.

mdedetrich avatar mdedetrich commented on August 15, 2024

@jrudolph I think this is the wrong place for your comment, I think this discussion is of relevance #105 (comment)

from pekko.

pjfanning avatar pjfanning commented on August 15, 2024

are we in a position to close this?

from pekko.

mdedetrich avatar mdedetrich commented on August 15, 2024

So I think there is merit in the premise of this ticket but its definitely not required for our first release so removing it from the milestone.

from pekko.

pjfanning avatar pjfanning commented on August 15, 2024

I think the rsync that we have in CI is fine - so we need this @mdedetrich ?

from pekko.

mdedetrich avatar mdedetrich commented on August 15, 2024

Its an improvement I would like to do because although the CI solution works its a very basic/primitive one, i.e. it needs to have knowledge of Scala internals so if we for example change scala versions we can break publishing, see https://github.com/apache/incubator-pekko/blob/main/.github/workflows/publish-nightly-docs.yml#L63

The most ideal solution is still an SBT plugin because its easier to maintain/automatic/much less boilerplate since we can use it in a common sbt-pekko plugin but its def not a priority

from pekko.

mdedetrich avatar mdedetrich commented on August 15, 2024

I think the rsync that we have in CI is fine - so we need this @mdedetrich ?

Just want to add that with the recent work happening on doc publishing due to release, I would argue that its further increasing the the legitimacy of such a plugin.

If you have a look at our standard publish action right now (i.e. https://github.com/apache/incubator-pekko/blob/main/.github/workflows/publish-1.0-docs.yml#L61-L95) you can see how unwieldy its starting to become. The main reason behind this is binary/project/scala versions is all a black box to github actions and so questions like "what is the last patch version of pekko" and "only maintain patch version docs for the latest x releases" are much easier to automate via an sbt-plugin.

And remember that the current solution (which is a workaround with hardcoded constants) is only for a single repo, we have like 10-12

from pekko.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.