this post was submitted on 25 May 2024
368 points (98.4% liked)
Programmer Humor
32361 readers
399 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
See your problem is you're editing the code until it passes the tests. It's way easier if you edit the tests until it passes the code.
Unless you are using groovy (jenkins), then you are running the pipeline to find syntax errors.
FYI, Jenkins has an endpoint to validate the pipeline without running it, and there's a VSCode extension to do this without leaving the editor: https://www.jenkins.io/blog/2018/11/07/Validate-Jenkinsfile/
I am not using Jenkins anymore but this seems like a lifesaver, thanks for sharing
I use Jenkins for work, unfortunately, so I have plenty of experience
Only for declarative pipelines, forget it if you use scripted ones.