A | B | C | D | E | F | G | H | I | J | K | |
---|---|---|---|---|---|---|---|---|---|---|---|
1 | Timestamp | Referrer URL | Overall, how helpful was the page you were viewing? | What suggestions do you have to improve this page? (If you answered "Very helpful" above, feel free to write "None" to indicate no further feedback.) | Are there any other aspects of the Jenkins User Documentation that you'd like to see improved? (Please be as specific as possible.) | ||||||
2 | 11/17/2017 17:54:03 | https://jenkins.io/doc/pipeline/tour/getting-started/ | Neutral | Could you please include (1) How to stop the jenkins ? (2) Where to update the port 8080 ? I had to search in Google for the above two issues i faced , Sorry i am new/novice to Jenkins | Could you please include (1) How to stop the jenkins ? (2) Where to update the port 8080 ? I had to search in Google for the above two issues i faced , Sorry i am new/novice to Jenkins | ||||||
3 | 11/18/2017 4:07:31 | https://jenkins.io/doc/book/scaling/ | Not that helpful | it has no actual content. It refers to "this chapter" but then there is no chapter text. It's not helpful at all. | |||||||
4 | 11/24/2017 2:01:20 | https://jenkins.io/doc/book/pipeline/syntax/ | Not that helpful | Cmon, guys! --- timestamps Prepend all console output generated by the Pipeline run with the time at which the line was emitted. For example: options { timestamps() } --- this is not true! I tried in a different ways with installed TImestamper plugin - and there is no such option as timestamps()! Please advise. | |||||||
5 | 11/27/2017 4:47:27 | https://jenkins.io/doc/tutorials/building-a-node-js-and-react-app-with-npm/ | Not that helpful | None of the Blueocean tutorial pages will work, as the currently published docker images (specifically the one used in the documentation) will work for the tutorial, as they do not allow dockers to be spawned. Which, when you think about it, is kind of incredible because this means you are 100% guaranteed to fail when trying to complete this tutorial (if you just want to follow the instructions as presented). Additionally, the docker images do not appear to be available in a public repo, which again is kind of incredible. | Otherwise, the documentation is really solid. So disappointing that I've spent over an hour now just trying to find out how I can help fix the problem, but I can't because the simplest procedures haven't been followed to facilitate contributing. | ||||||
6 | 12/1/2017 9:18:13 | https://jenkins.io/doc/book/pipeline/shared-libraries/ | Unhelpful | Add actual samples that work. These don't. | Document what things are and how they work together. | ||||||
7 | 12/4/2017 22:48:57 | https://jenkins.io/doc/book/blueocean/creating-pipelines/ | Unhelpful | Why does the text "You need to register this public SSH key with your Git server to continue - learn more." link to this page when nothin on the page explains how to register the SSH key. Completely useless | |||||||
8 | 12/5/2017 3:41:08 | https://jenkins.io/doc/pipeline/tour/hello-world/ | Not that helpful | When including config elements like "agent" it would be helpful to see some guidance on what they mean. | |||||||
9 | 12/6/2017 21:28:52 | https://jenkins.io/doc/pipeline/tour/environment/ | Unhelpful | The "Using environment variables" page shows the usage of the environment block, but that doesn't work at all. There is no mention of withEnv that actually does work. node { stage ('TestNotWorking') { environment { TESTVAR1 = '1' } bat "set" } stage ('TestWorking') { withEnv( [ 'TESTVAR2=1' ] ) { bat "set" } } } | |||||||
10 | 12/7/2017 3:43:22 | https://jenkins.io/doc/pipeline/tour/hello-world/ | Neutral | Please add an example for Perl: pipeline { agent { docker 'perl' } stages { stage('build') { steps { sh 'perl --version' } } } } | |||||||
11 | 12/7/2017 20:47:29 | https://jenkins.io/doc/book/pipeline/syntax/ | Unhelpful | Improve documentation with clear separation declarative/non-declarative pipeline and usage of the plugins in declarative/non-declarative way. I have wasted a lot of time!!! Would recommend to rethink before choosing Jenkins. | Improve documentation with clear separation declarative/non-declarative pipeline and usage of the plugins in declarative/non-declarative way. I have wasted a lot of time!!! Would recommend to rethink before choosing Jenkins. | ||||||
12 | 12/8/2017 8:02:14 | https://jenkins.io/doc/book/glossary/ | Unhelpful | This page replaced the wiki page but contains less than 50% of the original content. All the definitions of build results were lost, not only from the new glosary but they were also removed from the wiki page which was replaced with a single link pointing to the crippled version. | Maybe bring back the wiki? at least there people could fix and add comments, collaborating on improving it. The new system is static, the feedback form is opaque and does not help much in going forward. | ||||||
13 | 12/8/2017 8:19:24 | https://jenkins.io/doc/book/pipeline/docker/ | Unhelpful | How do I login to docker hub? | |||||||
14 | 12/9/2017 5:52:55 | https://jenkins.io/doc/book/scaling/ | Unhelpful | Yes. The page actually needs to be written. | There is a LOT of documentation in the wiki that appears to be obsolete. I'm noticing that the docker container configuration is NOT what is covered in distributed builds. | ||||||
15 | 12/12/2017 7:12:17 | https://jenkins.io/doc/pipeline/tour/tests-and-artifacts/ | Unhelpful | This says nothing about HOW this works, where the files ACTUALLY are or anything. It just assumes you're using jUnit and that you want to run jUnit directly from the pipeline. Very unheplful. | Stop assuming people use Jenkins a certain way and show us WHY THINGS WORK the way they do | ||||||
16 | 12/14/2017 8:37:54 | https://jenkins.io/doc/book/scaling/ | Unhelpful | There is no chapter regarding scaling jenkins, as it appears there should be | |||||||
17 | 12/15/2017 8:12:04 | https://jenkins.io/doc/tutorials/building-a-node-js-and-react-app-with-npm/ | Very helpful | when i first ran the tutorial i got an error trying to start up the second docker container. after rebooting i was fine. maybe mention that somewhere. | |||||||
18 | 12/16/2017 6:19:06 | https://jenkins.io/doc/pipeline/steps/htmlpublisher/ | Moderately helpful | Code examples of how to use the plugin are needed. Also, the field names here do not match the UI elements, so the example is really important for getting things right. | Provide explicit examples wherever possible | ||||||
19 | 12/18/2017 19:24:28 | https://jenkins.io/doc/pipeline/steps/workflow-basic-steps/ | Unhelpful | A small example would be really helpful. I don't know how to use all this stuff! | More examples please. | ||||||
20 | 12/19/2017 23:31:38 | https://jenkins.io/doc/pipeline/tour/hello-world/ | Not that helpful | I selected github for my source & selected my repo, job then hung on 'Scan Repository Log' phase, telling me I was connecting to github with no credentials and was hitting the API limit. A little explanation on setting up credentials would be very helpful. 12:08:53 GitHub API Usage: Current quota has 35 remaining (13 over budget). Next quota of 60 in 50 min. Sleeping for 22 min. 12:11:53 GitHub API Usage: Still sleeping, now only 19 min remaining. | |||||||
21 | 12/20/2017 4:09:17 | https://jenkins.io/doc/pipeline/tour/hello-world/ | Unhelpful | Could not complete the steps. Only "Freestyle Project" was available when I tried to add a new item. | |||||||
22 | 12/21/2017 4:43:37 | https://jenkins.io/doc/pipeline/tour/environment/ | Neutral | When you say "credentials is only available for Declarative Pipeline. For those using Scripted Pipeline, see the documentation for the withCredentials step", provide a link to the documentation for withCredentials | |||||||
23 | 12/21/2017 8:06:16 | https://jenkins.io/doc/pipeline/steps/workflow-scm-step/ | Unhelpful | The documentation at page > https://jenkins.io/doc/pipeline/steps/workflow-scm-step/ is very unhelpful. Due to how the information is formatted, it is almost impossible to use. Indenting and other sectioning techniques would be extremely helpful to see what parameters belong to which objects. With the way it is, all in one column, it's like having to solve a puzzle to get only part of the information this page promises. While I'm all for solving puzzles on the job, it is not the right way to write documentation. | Other than that specific page, it's fine as far as I can tell. I would also like to comment on the security check on this feedback page: `Type the answer to "4" plus "3" before clicking "Submit" below.` This is ambiguous and confusing - according to my browser's Javascript console: >>"4" + "3" ----> "43" but the feedback form doesn't accept this as an answer. | ||||||
24 | 12/22/2017 4:33:03 | https://jenkins.io/doc/pipeline/steps/ | Moderately helpful | The checkstyle, jacoco and findbugs plugins have all added proper Jenkinsfile descriptors, but none of them are documented on this listing. | |||||||
25 | 12/22/2017 10:16:07 | https://jenkins.io/doc/pipeline/steps/pipeline-githubnotify-step/ | Not that helpful | Please add an example of a Jenkinsfile which uses the plugin. https://jenkins.io/doc/pipeline/steps/pipeline-githubnotify-step/ | |||||||
26 | 12/22/2017 18:29:42 | https://jenkins.io/doc/book/system-administration/with-chef/ | Unhelpful | Hi Team, I'd like to suggest the removal of placeholders. It makes the documentation feel unfinished when you happen upon empty pages in an otherwise excellent manual. | This is very important to me -- I'd like to see documentation for a few extremely common items. 1. Running Jenkins through a proxy (NGINX/Apache). This is extremely common. While I have found samples here and there, it would be great if the team provided a more definitive guide. 2. Running NGINX with TLS (HTTPS) and Certs. Jenkins has support, but it's undocumented. 3. More advanced tutorials and best practices for declarative pipelines. I love the tutorials written so far, but having a few that cover scenarios such as parallel stages, parallel steps, and multi-platform builds would be amazing. I thoroughly enjoy the docs provided so far, they are extremely helpful, but the addition of the items above would really prove helpful for real-world usage. | ||||||
27 | 12/23/2017 0:46:15 | https://jenkins.io/doc/pipeline/steps/workflow-cps/ | Unhelpful | "parallel" is broken | |||||||
28 | 12/28/2017 8:01:56 | https://jenkins.io/doc/pipeline/steps/github-pullrequest/ | Not that helpful | How do I use this? This is just a reference, but completely lacks context & usage. Even just a simple example would go a long way here. | |||||||
29 | 1/5/2018 3:03:08 | https://jenkins.io/doc/pipeline/tour/getting-started/ | Not that helpful | I want basic information without having to download a tutorial and several programs. I will not be hosting my own jenkins server, nor will I be creating projects or pipelines from scratch. some sort of information about what jenkins is, and what it does, without having to download lots of things, would be preferable. | how about a diagram showing how a pipeline works and what triggers are and some written explanation rather than downloading programs and tutorials. | ||||||
30 | 1/5/2018 6:46:46 | https://jenkins.io/doc/book/pipeline/syntax/ | Not that helpful | agent docker section missing critical info about private docker repos e.g., agent { docker { image "image name" registryUrl "https://wherever" registryCredentialsId "credsId" } } | |||||||
31 | 1/5/2018 20:18:03 | https://jenkins.io/doc/pipeline/tour/hello-world/ | Unhelpful | Show examples for agents other than docker or at least show a list of what other agents are available. | All your tutorials are too much centered around docker and github. Most of us developers use a git repository in our LAN and a Java application server to perform integration tests (e. g. Arquillian framework). With the pre-pipeline jenkins configuration page creating a jenkins project was rather easy to understand and accomplish. While I see the benefit of pipelines in offering much more freedom I also see the need for much more varied and detailed tutorials in order for people to understand how to use pipelines, e .g. show us an example for connecting to a remote git repository using ssh as protocol. | ||||||
32 | 1/5/2018 23:11:31 | https://jenkins.io/doc/pipeline/steps/workflow-cps-global-lib/ | Unhelpful | huuuge blob of class documentation that doesn't seem releavant, no documentation of what 'libraryRessource' does or how it works. Formating of parameter documentation is also very user unfriendly - the thing that catches your eye is the variable type (e.g. string) instead of the variable name.... | |||||||
33 | 1/7/2018 15:34:30 | https://jenkins.io/doc/pipeline/steps/workflow-durable-task-step/ | Not that helpful | There should be examples of usage. | |||||||
34 | 1/9/2018 7:39:48 | https://jenkins.io/doc/pipeline/steps/git/ | Not that helpful | Could use an example. | Just more examples, and an alphabetized reference of Jenkins pipeline commands that one would use in a Jenkinsfile, with examples. | ||||||
35 | 1/10/2018 6:21:24 | https://jenkins.io/doc/pipeline/steps/workflow-scm-step/ | Unhelpful | This page is much worse that "Unhelpful". It's a an unintelligible mess that gets me supremely pissed off every time I have to look at it. The Jenkins folks ought to be embarrassed about putting it online. I honestly think putting nothing up at all would be better than this. | |||||||
36 | 1/10/2018 19:57:44 | https://jenkins.io/doc/tutorials/build-a-node-js-and-react-app-with-npm/ | Not that helpful | The tutorial just doesn't work on Mac plus docker | |||||||
37 | 1/10/2018 19:57:46 | https://jenkins.io/doc/tutorials/build-a-node-js-and-react-app-with-npm/ | Not that helpful | The tutorial just doesn't work on Mac plus docker | |||||||
38 | 1/11/2018 0:05:33 | https://jenkins.io/doc/pipeline/steps/pipeline-build-step/ | Neutral | Examples would be great | - Migration guides from freeform to pipeline - More tutorials, getting an overview is not so easy - Docs / best practices for installing via chef | ||||||
39 | 1/11/2018 19:10:57 | https://jenkins.io/doc/pipeline/steps/pipeline-build-step/ | Not that helpful | Structure the page, it is unreadable to me. | |||||||
40 | 1/13/2018 6:12:35 | https://jenkins.io/doc/book/installing/ | Unhelpful | Jenkins never asked me for the unlock, and therefore I never got the admin password, therefore I was unable to create a use account, therefore the page is garbage because it never takes into account the very likely case that something may not go correctly | Assume that sometimes things will not go 100% correct, and give a way to reset everything back so that you have a chance to get your system to a state that the instructions expect | ||||||
41 | 1/17/2018 12:21:25 | https://jenkins.io/doc/pipeline/steps/git/ | Neutral | Put down some examples, it's obvious when the only parameter is the url, but how do specify multiple parameters? This doesn't work: git branch: 'dev' url: '<URL>' A few examples would show me how to separate the parameters | |||||||
42 | 1/17/2018 15:36:47 | https://jenkins.io/doc/book/managing/cli/ | Moderately helpful | For the SSH connection mode, how would we pass in a private key explicity to connect ? what flags do we pass in? is it "-s http://localhost:8080 help -ssh -user jenkins -i id_rsa " | |||||||
43 | 1/18/2018 0:49:33 | https://jenkins.io/doc/pipeline/steps/workflow-cps/ | Unhelpful | Some info is missing: https://jenkins.io/doc/pipeline/steps/workflow-cps/#parallel-execute-in-parallel parallel: Execute in parallel org.kohsuke.stapler.NoStaplerConstructorException: There’s no @DataBoundConstructor on any constructor of class org.jenkinsci.plugins.workflow.cps.steps.ParallelStep | |||||||
44 | 1/18/2018 21:08:47 | https://jenkins.io/doc/tutorials/build-a-java-app-with-maven/ | Unhelpful | None of the tutorials work on recent MacOSX running recent Docker for Mac. All fail with the error message [simple-java-maven-app] Running shell script sh: can't create /var/jenkins_home/workspace/simple-java-maven-app@tmp/durable-0001f1fc/jenkins-log.txt: nonexistent directory sh: can't create /var/jenkins_home/workspace/simple-java-maven-app@tmp/durable-0001f1fc/jenkins-result.txt: nonexistent directory | |||||||
45 | 1/19/2018 5:23:12 | https://jenkins.io/doc/tutorials/build-a-java-app-with-maven/ | Not that helpful | On windows I am getting this error all the time, tried on work pc and home pc as well: [simplemavenapp] Running shell script sh: can't create /var/jenkins_home/workspace/simplemavenapp@tmp/durable-820d39ff/jenkins-log.txt: nonexistent directory sh: can't create /var/jenkins_home/workspace/simplemavenapp@tmp/durable-820d39ff/jenkins-result.txt: nonexistent directory script returned exit code -2 | |||||||
46 | 1/22/2018 6:21:29 | https://jenkins.io/doc/book/pipeline/docker/ | Moderately helpful | That session https://jenkins.io/doc/book/pipeline/docker/#caching-data-for-containers I`ve explained the issue on this github issue: https://github.com/carlossg/docker-maven/issues/63 | |||||||
47 | 1/22/2018 14:56:57 | https://www.google.com/ | Unhelpful | why dont you have anything helpful for scripted pipeline ? where is the documentation for using the following ? githubPush, headRegexFilter, headWildcardFilter, hyperlink, hyperlinkToModels, installSource, jacoco, jdk, jdkInstaller, jgit, jgitapache, jnlp, jobName, junit, label, lastDuration, lastFailure, lastGrantedAuthorities, | |||||||
48 | 1/23/2018 5:31:10 | https://jenkins.io/doc/pipeline/steps/workflow-multibranch/ | Not that helpful | The steps reference doesn't render in a way that makes this page easily readable. Its hard to follow what settings are with what objects, especially when looking at nested settings and descriptions. I've tried in Chrome, Firefox, IE, and Opera. It always looks like one flat doc. | It would be nice to see more documentation for the pipeline that looks like the Job DSL API documentation. | ||||||
49 | 1/23/2018 6:52:12 | https://jenkins.io/doc/pipeline/steps/pipeline-build-step/ | Not that helpful | * Provide defaults * Provide uses * What are the return values for some of this stuff? | |||||||
50 | 1/24/2018 3:03:49 | https://jenkins.io/doc/pipeline/steps/Office-365-Connector/ | Neutral | I need a link to the valid statuses and example of how to use this to indicate failure | more links to javadoc, examples of valid values | ||||||
51 | 1/24/2018 3:43:03 | https://jenkins.io/doc/pipeline/steps/ssh-agent/ | Not that helpful | It doesn't mention what does the plugin do. | |||||||
52 | 1/25/2018 18:35:31 | https://jenkins.io/doc/book/pipeline/shared-libraries/ | Moderately helpful | Please add the init groovy script to configure Global shared libraries when Jenkins start | |||||||
53 | 1/25/2018 19:19:18 | https://jenkins.io/doc/pipeline/tour/hello-world/ | Not that helpful | C# / C++ / C example | not for the moment | ||||||
54 | 1/25/2018 21:02:18 | https://jenkins.io/doc/pipeline/steps/pipeline-input-step/ | Moderately helpful | https://jenkins.io/doc/pipeline/steps/pipeline-input-step/ this page unreadable. no separators and spaces it is unclear which parameters to which property relations | |||||||
55 | 1/26/2018 3:27:49 | https://jenkins.io/doc/tutorials/build-a-node-js-and-react-app-with-npm/ | Neutral | helpful but please use newest node, as anithing above 6 breaks when you try to npm install | |||||||
56 | 1/27/2018 1:33:42 | https://jenkins.io/doc/pipeline/steps/pipeline-milestone-step/ | Not that helpful | A simple example could be very helpful ! | in general, a simple example of each parameter in a jenkinsfile could be really helpful, Thx | ||||||
57 | 1/28/2018 11:53:07 | https://jenkins.io/doc/tutorials/build-a-node-js-and-react-app-with-npm/ | Unhelpful | The first build doesnt work due to this error: [simple-node-js-react-npm-app] Running shell script sh: can't create /var/jenkins_home/workspace/simple-node-js-react-npm-app@tmp/durable-39634fe9/jenkins-log.txt: nonexistent directory sh: can't create /var/jenkins_home/workspace/simple-node-js-react-npm-app@tmp/durable-39634fe9/jenkins-result.txt: nonexistent directory script returned exit code -2 | Not having errors like this. | ||||||
58 | 1/29/2018 16:39:45 | https://jenkins.io/doc/pipeline/steps/p4/ | Unhelpful | There are no example of the pipeline plugin implementation, I couldnt form the command seeing the explanation | |||||||
59 | 2/1/2018 23:03:30 | https://jenkins.io/doc/book/installing/ | Neutral | Running the Docker jenkinsci/blueocean image - the initial login experience is not as described; there is no "unlock" page. You just have to log in as admin with the password in the InitialAdminPassword file as described | |||||||
60 | 2/3/2018 3:50:48 | https://jenkins.io/doc/book/appendix/ | Not that helpful | Why is your documentation not searchable? I know the terms I'm looking for, I don't know where you've buried it. | |||||||
61 | 2/5/2018 23:24:06 | https://jenkins.io/doc/pipeline/steps/workflow-cps/ | Unhelpful | Text on 'parallel' is missing. Check what's wrong there. | |||||||
62 | 2/7/2018 3:41:17 | https://jenkins.io/doc/pipeline/steps/workflow-scm-step/ | Not that helpful | Hundreds of meaningless variables listed, not a single concrete example. What does scm Nested Choice of Objects $class: AWSCodePipelineSCM name::: + Type: String mean?!?! So I should write 'checkout scm $class: AWSCodePipelineSCM myname:::'? Since you insist on your own syntax, perhaps document it? Show some examples? SCM shows literally hundreds of unexplained entries, not one word on usage. Show how to actually use these things. | A proper explanation of scripted pipeline, complete with examples for all variables & plugins. All the examples explain in declarative, and there's never a simple one-to-one mapping that is easy to understand. Working with Jenkins pipelines is an exercise in swearing and frustration, trawling Google in the hope that someone somewhere posted enough working snippets to figure out how to do anything. | ||||||
63 | 2/7/2018 14:49:33 | https://jenkins.io/doc/pipeline/steps/workflow-basic-steps/ | Not that helpful | The generic build step, "step", documented https://jenkins.io/doc/pipeline/steps/workflow-basic-steps/#code-step-code-general-build-step makes the page far too long to navigate. | |||||||
64 | 2/8/2018 5:54:00 | https://jenkins.io/doc/pipeline/steps/ | Not that helpful | Why are certain pages like https://jenkins.io/doc/pipeline/steps/workflow-cps/ no longer listed? | |||||||
65 | 2/8/2018 20:28:58 | https://jenkins.io/doc/pipeline/tour/environment/ | Not that helpful | Tried it and it doesn't work and I get no errors. Therefore there are either special conditions which are not mentioned here to get this to work or an in-your-face bug which should have been picked up already. If groovy script lines are ignored I need to know about it. | The current documentation is appalling. There is tons of stuff missing. For example the "node" docs do not mention at all that you specify labels as an optional parameter i.e node("linux&&1604") matches nodes that have the linux and 1604 label defined. No new functionality should be released unless the developer has created the documentation page for the item in detail and checked by someone else or it is completely pointless in using the product. | ||||||
66 | 2/9/2018 19:42:20 | https://jenkins.io/doc/book/pipeline/getting-started/ | Moderately helpful | Since this is the first page presenting the graphical UI (at least was for me), I'd like to see some info about "Save" and "Apply", when to use which... and also about best practices in reverting unwanted changes: how to be sure that you are viewing the saved version of the page again. Thank you. | |||||||
67 | 2/10/2018 1:47:11 | https://jenkins.io/doc/book/pipeline/syntax/ | Not that helpful | The steps section(https://jenkins.io/doc/book/pipeline/syntax/#declarative-steps) does not link to the basic steps documentation: https://jenkins.io/doc/pipeline/steps/workflow-basic-steps/ | The basic steps documentation (https://jenkins.io/doc/pipeline/steps/workflow-basic-steps/) does not document `sh`. The most information I was able to find about `sh` in the documentation was here: https://jenkins.io/doc/book/pipeline/jenkinsfile/#build | ||||||
68 | 2/11/2018 0:17:59 | https://jenkins.io/doc/pipeline/tour/getting-started/ | Not that helpful | Add docker start command please | |||||||
69 | 2/11/2018 8:12:08 | https://jenkins.io/doc/pipeline/steps/warnings/ | Moderately helpful | Please fill in more info on what the parameters mean! | The above is generally lacking | ||||||
70 | 2/12/2018 14:51:19 | https://jenkins.io/doc/pipeline/steps/pipeline-input-step/ | Unhelpful | This is an incomprehensible page. I mean the input pipline plugin. It's so long I have no idea where I am in the context of the information. Breaking it up will help a lot. It generally needs a lot of work. | |||||||
71 | 2/13/2018 2:53:20 | https://jenkins.io/doc/pipeline/steps/pipeline-stage-step/ | Not that helpful | What does the concurrency parameter do? | |||||||
72 | 2/14/2018 11:24:24 | https://jenkins.io/doc/pipeline/steps/workflow-durable-task-step/ | Not that helpful | Examples would be useful | |||||||
73 | 2/14/2018 19:21:41 | https://jenkins.io/doc/pipeline/steps/workflow-basic-steps/ | Moderately helpful | Hi Guys, there needs to be more actual examples for how to use the (optional parts of) steps. I commented now because I have not found any nice easy explanation how to use the SLEEP command with any other TimeUnit as Seconds. cheers! | |||||||
74 | 2/15/2018 21:02:18 | https://jenkins.io/doc/pipeline/tour/environment/ | Moderately helpful | Describe when the "environment" section during a pipline is executed. For example if we do the following, I would not know when this actually happens. environment {VARIABLE = sh(returnStdout: true, script: 'git rev-parse HEAD')} Maybe you can add a small note or sth. here. | |||||||
75 | 2/15/2018 21:18:02 | https://jenkins.io/doc/pipeline/steps/ansible/ | Neutral | There are no examples! | |||||||
76 | 2/16/2018 0:07:36 | https://jenkins.io/doc/pipeline/steps/sonar/ | Unhelpful | Update the page with a real pipeline declarative extract using and running Sonar | |||||||
77 | 2/20/2018 4:16:53 | https://jenkins.io/doc/pipeline/steps/pipeline-aws/ | Not that helpful | An example of how to actually use these commands | |||||||
78 | 2/20/2018 17:53:20 | https://jenkins.io/doc/pipeline/steps/artifactory/ | Not that helpful | Please also provide usage examples instead of only abstract syntax reference. Even more important, provide documentation of what the commands actually do. | |||||||
79 | 2/21/2018 16:31:41 | https://jenkins.io/doc/pipeline/steps/pipeline-stage-step/ | Not that helpful | At least one example. | |||||||
80 | 2/21/2018 18:23:34 | https://jenkins.io/doc/book/pipeline/syntax/ | Unhelpful | Please document the possible pipeline steps with 1) all possible options 2) description of the meaning of those options 3) examples. If you cannot do this quickly, please at least link to the relevant sources, so we don't need to look for those. | |||||||
81 | 2/22/2018 5:12:57 | https://jenkins.io/doc/pipeline/tour/environment/ | Neutral | Explain limitations of use e.g. evaluated after agent directive, and actually have an example of using an environment variable and not just `printenv`. | |||||||
82 | 2/23/2018 5:59:51 | https://jenkins.io/doc/book/pipeline/jenkinsfile/ | Unhelpful | At the very, very start of this article, which in every *other* aspect is very helpful, pretty please write what to name the fscking file one is supposed to check in to scm. It's mentioned in a billion places that it's "a Jenkinsfile", which sounds more like a fileTYPE than a fileNAME. | |||||||
83 | 2/26/2018 17:24:12 | https://jenkins.io/doc/pipeline/steps/junit-realtime-test-reporter/ | Not that helpful | Show an example using the JUnit Realtime Test Reporter Plugin | |||||||
84 | 2/27/2018 9:33:32 | https://jenkins.io/doc/pipeline/steps/git/ | Not that helpful | Doesn't say what any of the parameters actually do. | |||||||
85 | 2/28/2018 22:21:06 | https://jenkins.io/doc/book/using/ | Neutral | The first sentence is not clear to me : "This chapter contains topics for typical Jenkins users (of all skill levels) about Jenkins usage which is outside the scope of the core Jenkins features: Pipeline and Blue Ocean." At first I understood that it was about Pipeline and Blue Ocean. Suggestion : rewrite it as "This chapter is addressed to typical Jenkins users (of all skill levels) about Jenkins usage, excepting the two core Jenkins features: Pipeline and Blue Ocean, which are detailed in [link] ." | |||||||
86 | 2/28/2018 23:53:06 | https://jenkins.io/doc/book/pipeline/syntax/ | Not that helpful | Add examples for scripted pipeline. Declarative pipelines can not be used when things get even a little more complicated, which is basically always. And since the whole documentation is focused on declarative pipelines only, it is very hard to found out the equivalent syntax for scripted pipelines. Provide both please. | |||||||
87 | 3/1/2018 4:22:48 | https://jenkins.io/doc/pipeline/tour/getting-started/ | Moderately helpful | th page says """navigate to Get Docker at the top of the website to access the Docker download that’s suitable for your platform""" there is no get docker aat the top of the page! | |||||||
88 | 3/1/2018 7:05:54 | https://jenkins.io/doc/pipeline/steps/release/ | Unhelpful | Example should be provided about how to use the release plugin in pipeline. The technical aspect is useless, uneless we can put it in context. | |||||||
89 | 3/1/2018 22:29:10 | https://jenkins.io/doc/pipeline/steps/workflow-durable-task-step/ | Not that helpful | Include examples of usage. | |||||||
90 | 3/2/2018 4:52:47 | https://jenkins.io/doc/pipeline/steps/workflow-scm-step/ | Unhelpful | Organize Information. Structure it hierarchically This page look like a source code dump. There is no way to recognize, which classes of SCM are avaliable and which options they provide. Honestly, this page is a mess... | |||||||
91 | 3/3/2018 0:43:56 | https://jenkins.io/doc/book/pipeline/docker/ | Moderately helpful | The page is missing some documentation. I had to reference the github repository and dig through the source to figure out how to use a custom docker path. (I had been looking for withTool) | Ability to add a pull request to update the docs, or some such nonsense - or at least provide examples. This site is the only somewhat useful google result outside stack overflow. Anecdotally, I like PHP documentation. There are user examples, both good and bad, and a voting system. I don't like most Java docs - I would rather just read the source code. | ||||||
92 | 3/3/2018 5:32:37 | https://jenkins.io/doc/pipeline/steps/junit/ | Not that helpful | There were no examples and almost no useful documentation on the optional fields. | |||||||
93 | 3/3/2018 8:53:44 | https://jenkins.io/doc/pipeline/steps/pipeline-input-step/ | Neutral | Have some concrete examples. | |||||||
94 | 3/5/2018 17:30:06 | https://jenkins.io/doc/pipeline/steps/lockable-resources/ | Not that helpful | Please include small snippets of example | |||||||
95 | 3/6/2018 2:36:18 | https://jenkins.io/doc/book/pipeline/shared-libraries/ | Not that helpful | Add _something_ about how to proper document the shared libs. The only indication is that a txt file should be in the same folder with the same name. But nothing about its format (markup, html, plaint txt) or if we could add groovydoc on the groovy file so it shows on the Help and the GDSL. | |||||||
96 | 3/6/2018 6:59:58 | https://jenkins.io/doc/pipeline/tour/hello-world/ | Not that helpful | I said "Not that helpful", because I had to get help from a colleague in order to even start to follow the tutorial. A tutorial like this should be rock-solid and list all prerequisites and their version numbers required to follow the tutorial so that it works out of the box. I was not able to observe my initial project run/build with the supplied Jenkinsfile. The Jenkinsfile had the line "agent { docker 'node:6.3' }" in it. A colleague helped me by changing that line to: "agent { docker { image 'node:6.3' } }" | |||||||
97 | 3/7/2018 8:49:36 | https://jenkins.io/doc/tutorials/build-a-python-app-with-pyinstaller/ | Moderately helpful | This was really helpful in getting started! When you say to commit changes, I think you also want to tell people to push the changes to the repo. Is that right? If I don't do this, I get errors, and I assume, Jenkins has no idea I have committed locally and not pushed. | |||||||
98 | 3/8/2018 4:43:54 | https://jenkins.io/doc/tutorials/build-a-multibranch-pipeline-project/ | Very helpful | These tutorials rock! The person(s) who put them together have clearly gong to a lot of effort to make them bullet-proof. And, I really like how the steps are explained. Great job! | Please add some concrete examples to https://jenkins.io/doc/pipeline/steps/pipeline-input-step/ . | ||||||
99 | 3/8/2018 23:23:31 | https://jenkins.io/doc/pipeline/steps/pipeline-model-definition/ | Unhelpful | Add example how to use envVarsForTool | Generally add examples for pipeline commands. | ||||||
100 | 3/9/2018 1:36:54 | https://jenkins.io/doc/pipeline/tour/tests-and-artifacts/ | Not that helpful | This page glosses over the very real possibility that the post block uses a different workspace from the stage block. The junit task is very likely to not find the xml files because they are in a different workspace. | This issue of different workspaces for different stages (and post) needs to be made more clear. I thought I had read the documentation pretty carefully, but still had to puzzle through this issue. |