-
-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move pipelines to more reproducible platform with less YAML #365
Comments
I'd be down to do this, would love to put CI/CD pipelines on my resume. Where would we host this? |
What would they be used for? Why not just |
CI/CD pipelines run before code is allowed to be merged, ensuring that we don't accidentally forget to test everything before it's committed to main. It also performs actions like uploading updated docs to the Go website, posting to social media, updating the test coverage badges in the I'm very much on board with this, as it allows devs to more easily run all the testing/formatting/linting locally. It also allows us to avoid paying for CI/CD minutes on GitHub, and future-proofs poly in case we need to move it to another host. |
Well I know that, but I'm wondering what the git actions don't do right now that we want it to do.
I think it updates itself |
Nothing, except for perhaps the benchmarks you were suggesting in #366.
Wait, what did you mean by this over on #346 then @TimothyStiles ?
|
.take testing the auto assign bot |
.take another test |
Thanks for taking this issue! Let us know if you have any questions! |
This issue has had no activity in the past 2 months. Marking as |
@ethanholz I know you had said something on the Discord about helping out with CI/CD stuff. Need to get this done before #423 , do you have any suggestions? |
So I think there are a couple ways to come around to this. A tool I like using is https://github.com/nektos/act. It uses docker under the hood to test your GH actions locally and makes it easy for non-Git specific actions. For simplifying the test->CI->release pipeline, using a tool like I think that sticking with GitHub actions would work really well here but writing a spec for the local pipeline would help to make them easier to work with. |
@TimothyStiles what are your thoughts on making our test -> CI -> release pipeline be based on I'll also include a writeup on how to use |
After some discussion with @ethanholz on the Discord, I'm leaning toward |
Fixed by #429. |
I really don't like the development workflow of CI/CD pipelines. They're hard to reproduce and usually a grab bag of random scripts custom written for each repo.
What I'd like is a programmatic platform where we can locally develop CI/CD pipelines without having to troubleshoot them directly against GitHub Actions. Something like Dagger comes to mind but I'm sure there are other tools we could use.
The text was updated successfully, but these errors were encountered: