Earlier quoted context omitted.
or enshittificated
Jetbrains is among the very few companies I’ll trust for the time being
The worst thing about Jenkins is that it works (2019)
21–30 of 275 posts
Re: The worst thing about Jenkins is that it works (2019)
#22Re: The worst thing about Jenkins is that it works (2019)
#23Needs a (2019) Richard was my manager in early 2019, and was awesome.
Re: The worst thing about Jenkins is that it works (2019)
#24Jenkins works... No it dosen't or maybe it does for java which I don't care about. The ui looks like from the 90s. Finding anything in bigger projects/companies is impossible... I have browser bookmarks to find anything. The log view is annoying at best. I have nothing good to say about jenkins, it feels like it is stuck in the 2000s and refuses to change.
Re: The worst thing about Jenkins is that it works (2019)
#25Jenkins works... No it dosen't or maybe it does for java which I don't care about. The ui looks like from the 90s. Finding anything in bigger projects/companies is impossible... I have browser bookmarks to find anything. The log view is annoying at best. I have nothing good to say about jenkins, it feels like it is stuck in the 2000s and refuses to change.
The 90s were the last actual advance in UI design anyway. Design has drifted in a terrible direction, in the past decade or two especially. Some of this is justified (by some) by optimizing for mobile, but that’s precisely the kind of thing I wouldn’t want creeping into my CI tooling anyway. I don’t do that on a phone.
Re: The worst thing about Jenkins is that it works (2019)
#26Earlier quoted context omitted.
or enshittificated
Jetbrains is among the very few companies I’ll trust for the time being
Re: The worst thing about Jenkins is that it works (2019)
#27Jenkins is a bit like Perl IMO: there are ways to use it that avoid the majority of its sharp edges (eg putting logic in bash and just call bash, avoid groovy) if you know the perils that lurk.
Re: The worst thing about Jenkins is that it works (2019)
#28Earlier quoted context omitted.
Jetbrains is among the very few companies I’ll trust for the time being
Same here. Although I am super nervous that they will either cash out by going public or selling to some investor. That will be the end of it.
Re: The worst thing about Jenkins is that it works (2019)
#29Jenkins is not perfect by any means, but I can say it is much better than existing solutions (taking pros and cons after trying and using many of them). Sure, it doesn't have fancy UI or flying buttons, nor is it rust/PWA/react/whatever-rage-is-these-days, but it does its job - it works, is free, and has been very well-maintained for ages. Download a single file and run it. Want to extend it? There is a plugin for ev…
Re: The worst thing about Jenkins is that it works (2019)
#30All of the test runners have their issues. I've had as much problems with Jenkins as I've had with Github Runners and similar solutions. The best way out of this is to subdivide responsibilities: - Put all build/publish/test logic in Makefiles or scripts in the repo. This means that devs can run it locally as well. The only interaction between a test runner and the codebase should be running `make `. - Put all permis…