You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by mi...@apache.org on 2020/11/13 12:16:59 UTC

[httpcomponents-website] branch rework updated (1b4da01 -> dab294a)

This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a change to branch rework
in repository https://gitbox.apache.org/repos/asf/httpcomponents-website.git.


    from 1b4da01  Add CI configuration
     add 499d95f  Update license
     new dab294a  Update Jenkinsfile

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Jenkinsfile       |  8 ++++----
 src/site/site.xml | 41 +++++++++++++++--------------------------
 2 files changed, 19 insertions(+), 30 deletions(-)


[httpcomponents-website] 01/01: Update Jenkinsfile

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a commit to branch rework
in repository https://gitbox.apache.org/repos/asf/httpcomponents-website.git

commit dab294a19dd3d8750f37b7e85b65b04a0c550c6c
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Fri Nov 13 13:16:52 2020 +0100

    Update Jenkinsfile
---
 Jenkinsfile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 4d88275..56ba594 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -22,12 +22,12 @@
         label 'svn-websites'
     }
     stages {
-        stage('Build') {
+        stage('Build only') {
             when {
                 not { branch 'master' }
             }
             steps {
-                withMaven(jdk:'JDK 1.8 (latest)', maven:'Maven 3 (latest)', mavenLocalRepo:'.repository', options: [
+                withMaven(jdk:'jdk_1.8_latest', maven:'maven_3_latest', mavenLocalRepo:'.repository', options: [
                   artifactsPublisher(disabled: true),
                   junitPublisher(disabled: true),
                   findbugsPublisher(disabled: true),
@@ -37,12 +37,12 @@
                 }
             }
         }
-        stage('Deploy') {
+        stage('Site Deploy') {
             when {
                 branch 'master'
             }
             steps {
-                withMaven(jdk:'JDK 1.8 (latest)', maven:'Maven 3 (latest)', mavenLocalRepo:'.repository', options: [
+                withMaven(jdk:'jdk_1.8_latest', maven:'maven_3_latest', mavenLocalRepo:'.repository', options: [
                   artifactsPublisher(disabled: true),
                   junitPublisher(disabled: true),
                   findbugsPublisher(disabled: true),