KSP-KOS / KOS

Fully programmable autopilot mod for KSP. Originally By Nivekk
Other
690 stars 228 forks source link

When CI builds release, automatically publish notifications EVERYWHERE #874

Open erendrake opened 9 years ago

erendrake commented 9 years ago

Right now, after we build a release we have to publish it to:

in a perfect world, we could set a CI system to wait for the master branch to get changes then we:

  1. build/test/package
  2. wait for developer action
  3. when someone presses the 'do it' button. publish it everywhere.
Dunbaratu commented 9 years ago

Ideally, we'd have two "make targets" (yeah I know it won't be using makefiles but that sort of thing), one for building the package and a different one for publishing it. It would be important not to accidentally auto-publish when we didn't mean to.

I figure the first step to an auto-publisher would be to read the changelog and spit it out in the various markup systems out there. (i.e. Convert Changelog.md to bbcode, to .. uh... whatever the thing Reddit uses is called, etc,) Just dump the output of those into files at first, for cut and pasting into the publishing posts, and then as pass two, set up the auto-posting of them.

The reason I say this is that once you start talking about automatically interfacing with a web site designed for human interaction, you get into a hell of regression breaking whenever they change the human interface slightly. Something like Reddit may have a web API for it, but I'm not so sure about forum software and the like. It may be that automating that last step of it is a case of 50 hours of programming work to save a total of about 2 hours of time per year.

The formatting of the post - in different markups, that will save a lot of time - but to actually publish, that may be simpler to just leave up to a human doing cut and pasting into the posts in 3 different places.