From 3ce3bf89b39c8cd88c0aaeb0d84d8091f7f2ec2d Mon Sep 17 00:00:00 2001 From: Matthias Streidel Date: Fri, 28 Jan 2022 22:18:33 +0100 Subject: [PATCH 1/2] Fix typos in README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index eda1595..447bd5f 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ For Windows: If your webserver extracts the `jenkins.war` file when it deploys Jenkins then you may use the path directly to the `WEB-INF/lib` -directory and all other required jars will be found there. Otherwise you +directory and all other required jars will be found there. Otherwise, you may extract these from the war file: jenkins-core-*.jar @@ -95,7 +95,7 @@ project](https://wiki.jenkins.io/display/JENKINS/Building+a+software+project), which would also allow you to manually execute the job outside the scheduled executions. -## Submit a run programatically +## Submit a run programmatically The above command submits the execution and its result by sending XML to HTTP. This means you can submit an execution record from any program, as @@ -108,7 +108,7 @@ The format is explained below: ... integer indicating the error code. 0 is success and everything else is failure ... milliseconds it took to execute this run ... ... The name to be displayed rather than the build number ... -  ... Description of the build ... + ... Description of the build ... The `duration` element is optional, since 1.429 `displayName` and @@ -136,10 +136,10 @@ command. The gzipped log file can be transported through pipe: Sometimes build number is needed, as the calling program might need to put an URL to the submitted build. The CLI command above returns the new -build number. The command above can be called programatically from an +build number. The command above can be called programmatically from a Java application. You can find a sample for it [here](https://github.com/davido/gerrit-buildbot-plugin/blob/buildbot-2.5-plugin/src/main/java/org/libreoffice/ci/gerrit/buildbot/publisher/JenkinsLogPublisher.java). -## Vershion history +## Version history Please refer to the [changelog](CHANGELOG.md). From 15397aa64181ba5fc793debf30b031262b8d53dc Mon Sep 17 00:00:00 2001 From: Matthias Streidel Date: Fri, 28 Jan 2022 22:19:03 +0100 Subject: [PATCH 2/2] Let git ignore Intellij IDEA .iml files --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 20b6aae..b4454e1 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,5 @@ work /.classpath external-monitor-job.iml .idea +/src/main/main.iml +/src/test/test.iml