Conversation
|
Ok, so whats the plan? We merge as soon as Jenkins builds properly? |
5641edb to
27b7b84
Compare
|
Shouldn't Jenkins wait for the "Ready for CI" label, too? |
|
The Jenkinsfile has no impact on Murdock, so I removed the |
|
I see - but in principle Jenkins is able to react on Github labels? |
|
In theory yes, but I am currently failing to let Jenkins react correctly on label events. I will get this PR merged once it shows green and from there we can tackle further. Currently, every commit push would generate a build (as it used to be for travis way back in time). A simple semi-solution could be to look at the labels from within the Jenkinsfile (curl+GitHub API), but there is still the problem, that a null-commit would be necessary to trigger another build. But then again, are there many cases where the same commit must be build several times? |
and, ofcourse, it is also possible to trigger a build from the Jenkins GUI directly. |
|
@RIOT-OS/maintainers from my point of view this PR is ready to merge, so that we can observe how Jenkins performs on production. However, I am not able to merge my own PR, is anyone willing to hit the button? @kaspar030 (: ? |
|
btw. all RIOT-OS maintainers are allow to login into Jenkins with their github credentials. They can trigger or cancel builds of PRs. |
|
Seems like the script for the nightly builds isn't as it supposed to be ( |
|
the nightly config. was just an experiment some weeks ago. @smlng do you want to save the config. before I remove the job? |
|
ah simply delete it, I'll recreate it later ... |
|
How do I add mine? I have a native PR in the pipeline (#6337) which I would very much like to test :-) |
|
simply rebasing to current master should suffice (: |
|
Meh 😥 |
Rationale: I am currently evaluating the performance of Jenkins and for this a
Jenkinsfileis necessary.Jenkins is able to detect PRs and branches when a
Jenkinsfileis included in the root directory.Such a
Jenkinsfileorchestrates a build's operation (much like.travis.ymlfor Travis).This PR is WIP and feedback is very welcome.