aboutsummaryrefslogtreecommitdiffstats
path: root/appveyor.yml
blob: 4e8959685b3fea46ccfdcce6f36f2cc15fb90361 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
version: 1.0.{build}

branches:
  only:
  - master

cache:
  - C:\Users\appveyor\.m2 -> **\pom.xml

install:
  - set MAVEN_VERSION=3.3.9.1
  - choco install maven -version %MAVEN_VERSION%
  - set JAVA_HOME=C:\Program Files\Java\jdk1.8.0
  - set PATH=%JAVA_HOME%\bin;%PATH%;C:\bin\apache-maven-%MAVEN_VERSION%\bin

build_script:
  - ps: ./appveyor.ps1
href='#n30'>30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *  http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

/**
 * UI-Test Build file for Jenkins Multibranch pipeline.
 *
 * The pipeline runs only the UI tests.
 *
 */

LABEL = 'ubuntu'
buildJdk = 'JDK 1.8 (latest)'
buildMvn = 'Maven 3.5.2'
deploySettings = 'archiva-uid-jenkins'
DOCKERHUB_CREDS = '10a5f89e-504b-11e8-945d-7fd7b29cc41c'
localRepository = "../.archiva-master-repository"

pipeline {
    agent {
        label "${LABEL}"
    }

    stages {


        stage('Checkout') {
            steps {
                script {
                    echo "Info: Job-Name=${JOB_NAME}, Branch=${BRANCH_NAME}, Workspace=${PWD}"
                }
                checkout scm
            }
            post {
                failure {
                    notifyBuild("Checkout failure")
                }
            }
        }

        stage('Test htmlunit') {
            steps {
                timeout(120) {
                    withMaven(maven: buildMvn, jdk: buildJdk,
                            mavenSettingsConfig: deploySettings,
                            mavenLocalRepo: localRepository,
                            options: [concordionPublisher(disabled: true), dependenciesFingerprintPublisher(disabled: true),
                                      findbugsPublisher(disabled: true), artifactsPublisher(disabled: true),
                                      invokerPublisher(disabled: true), jgivenPublisher(disabled: true),
                                      junitPublisher(disabled: true, ignoreAttachments: false),
                                      openTasksPublisher(disabled: true), pipelineGraphPublisher(disabled: true)]
                    )
                            {
                                sh "chmod 755 ./src/ci/scripts/prepareWorkspace.sh"
                                sh "./src/ci/scripts/prepareWorkspace.sh -d '.repository'"
                                // Needs a lot of time to reload the repository files, try without cleanup
                                // Not sure, but maybe
                                // sh "rm -rf .repository"

                                // Run test phase / ignore test failures
                                // -B: Batch mode
                                // -U: Force snapshot update
                                // -e: Produce execution error messages
                                // -fae: Fail at the end
                                // -Dmaven.compiler.fork=true: Compile in a separate forked process
                                // -Pci-server: Profile for CI-Server
                                // -Pit-js: Run the selenium test
                                sh "mvn clean verify -B -V -U -e -fae -Dmaven.compiler.fork=true -DmaxWaitTimeInMs=2000 -Pci-server -Pit-js -DtrimStackTrace=false -Djava.io.tmpdir=.tmp -pl :archiva-webapp-test"

                            }
                }
            }
            post {
                always {
                    junit testResults: '**/target/failsafe-reports/TEST-*.xml'
                }
                failure {
                    notifyBuild("Failure in Htmlunit test stage")
                }
            }
        }

        // Uses a docker container that is started by script. Maybe we could use the docker functionality
        // of the jenkins pipeline in the future.
        stage('Test chrome') {
            steps {
                timeout(120) {
                    withCredentials([[$class          : 'UsernamePasswordMultiBinding', credentialsId: DOCKERHUB_CREDS,
                                      usernameVariable: 'DOCKER_HUB_USER', passwordVariable: 'DOCKER_HUB_PW']]) {
                        withMaven(maven: buildMvn, jdk: buildJdk,
                                mavenSettingsConfig: deploySettings,
                                mavenLocalRepo: localRepository,
                                options: [concordionPublisher(disabled: true), dependenciesFingerprintPublisher(disabled: true),
                                          findbugsPublisher(disabled: true), artifactsPublisher(disabled: true),
                                          invokerPublisher(disabled: true), jgivenPublisher(disabled: true),
                                          junitPublisher(disabled: true, ignoreAttachments: false),
                                          openTasksPublisher(disabled: true), pipelineGraphPublisher(disabled: true)]
                        )
                                {
                                    sh "chmod 755 ./src/ci/scripts/prepareWorkspace.sh"
                                    sh "./src/ci/scripts/prepareWorkspace.sh"
                                    sh "chmod 755 src/ci/scripts/container_webtest.sh"
                                    sh "src/ci/scripts/container_webtest.sh start"
                                    // Needs a lot of time to reload the repository files, try without cleanup
                                    // Not sure, but maybe
                                    // sh "rm -rf .repository"

                                    // Run test phase / ignore test failures
                                    // -B: Batch mode
                                    // -U: Force snapshot update
                                    // -e: Produce execution error messages
                                    // -fae: Fail at the end
                                    // -Pci-server: Profile for CI Server
                                    // -Pit-js: Runs the Selenium tests
                                    // -Pchrome: Activates the Selenium Chrome Test Agent
                                    sh "mvn verify -B -V -e -fae -Dmaven.compiler.fork=true -DmaxWaitTimeInMs=2000 -DseleniumRemote=true -Pci-server -Pit-js -Pchrome -pl :archiva-webapp-test -DtrimStackTrace=false"
                                }
                    }
                }
            }
            post {
                always {
                    sh "src/ci/scripts/container_webtest.sh stop"
                    junit testResults: '**/target/failsafe-reports/TEST-*.xml'
                }
                failure {
                    notifyBuild("Failure in Chrome test stage")
                }
            }
        }

    }
    post {
        unstable {
            notifyBuild("Unstable Build")
        }
        success {
            script {
                def previousResult = currentBuild.previousBuild?.result
                if (previousResult && !currentBuild.resultIsWorseOrEqualTo(previousResult)) {
                    notifyBuild("Fixed")
                }
            }
            cleanWs deleteDirs: true, notFailBuild: true, patterns: [[pattern: '.repository', type: 'EXCLUDE']]
        }

    }
}

// Send a notification about the build status
def notifyBuild(String buildStatus) {
    // default the value
    buildStatus = buildStatus ?: "UNKNOWN"

    def email = "notifications@archiva.apache.org"
    def summary = "${env.JOB_NAME}#${env.BUILD_NUMBER} - ${buildStatus} - ${currentBuild?.currentResult}"
    def detail = """<h4>Job: <a href='${env.JOB_URL}'>${env.JOB_NAME}</a> [#${env.BUILD_NUMBER}]</h4>
  <p><b>${buildStatus}</b></p>
  <table>
    <tr><td>Build</td><td><a href='${env.BUILD_URL}'>${env.BUILD_URL}</a></td><tr>
    <tr><td>Console</td><td><a href='${env.BUILD_URL}console'>${env.BUILD_URL}console</a></td><tr>
    <tr><td>Test Report</td><td><a href='${env.BUILD_URL}testReport/'>${env.BUILD_URL}testReport/</a></td><tr>
  </table>
  """

    emailext(
            to: email,
            subject: summary,
            body: detail,
            mimeType: 'text/html'
    )
}

// vim: et:ts=4:sw=4:ft=groovy