HBASE-26312 Shell scan fails with timestamp (#3734)
[hbase.git] / dev-support / flaky-tests / run-flaky-tests.Jenkinsfile
blob594000e1146f4ae19d7eab368456d96db2b9733d
1 // Licensed to the Apache Software Foundation (ASF) under one
2 // or more contributor license agreements.  See the NOTICE file
3 // distributed with this work for additional information
4 // regarding copyright ownership.  The ASF licenses this file
5 // to you under the Apache License, Version 2.0 (the
6 // "License"); you may not use this file except in compliance
7 // with the License.  You may obtain a copy of the License at
8 //
9 //   http://www.apache.org/licenses/LICENSE-2.0
11 // Unless required by applicable law or agreed to in writing,
12 // software distributed under the License is distributed on an
13 // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14 // KIND, either express or implied.  See the License for the
15 // specific language governing permissions and limitations
16 // under the License.
17 pipeline {
18   agent {
19     node {
20       label 'hbase'
21     }
22   }
23   triggers {
24     cron('H H/4 * * *') // Every four hours. See https://jenkins.io/doc/book/pipeline/syntax/#cron-syntax
25   }
26   options {
27     // this should roughly match how long we tell the flaky dashboard to look at
28     buildDiscarder(logRotator(numToKeepStr: '30'))
29     timeout (time: 2, unit: 'HOURS')
30     timestamps()
31   }
32   environment {
33     ASF_NIGHTLIES = 'https://nightlies.apache.org'
34   }
35   parameters {
36     booleanParam(name: 'DEBUG', defaultValue: false, description: 'Produce a lot more meta-information.')
37   }
38   tools {
39     // this should match what the yetus nightly job for the branch will use
40     maven 'maven_latest'
41     jdk "jdk_1.8_latest"
42   }
43   stages {
44     stage ('run flaky tests') {
45       steps {
46         sh '''#!/usr/bin/env bash
47           set -e
48           declare -a curl_args=(--fail)
49           declare -a mvn_args=(--batch-mode -fn -Dbuild.id="${BUILD_ID}" -Dmaven.repo.local="${WORKSPACE}/local-repository")
50           if [ "${DEBUG}" = "true" ]; then
51             curl_args=("${curl_args[@]}" -v)
52             mvn_args=("${mvn_args[@]}" -X)
53             set -x
54           fi
55           curl "${curl_args[@]}" -o includes.txt "${JENKINS_URL}/job/HBase/job/HBase-Find-Flaky-Tests/job/${BRANCH_NAME}/lastSuccessfulBuild/artifact/output/includes"
56           if [ -s includes.txt ]; then
57             rm -rf local-repository/org/apache/hbase
58             mvn clean "${mvn_args[@]}"
59             rm -rf "target/machine" && mkdir -p "target/machine"
60             if [ -x dev-support/gather_machine_environment.sh ]; then
61               "./dev-support/gather_machine_environment.sh" "target/machine"
62               echo "got the following saved stats in 'target/machine'"
63               ls -lh "target/machine"
64             else
65               echo "Skipped gathering machine environment because we couldn't read the script to do so."
66             fi
67             mvn -T0.25C package "${mvn_args[@]}" -Dtest="$(cat includes.txt)" -Dmaven.test.redirectTestOutputToFile=true -Dsurefire.firstPartForkCount=0.25C -Dsurefire.secondPartForkCount=0.25C
68           else
69             echo "set of flaky tests is currently empty."
70           fi
71 '''
72       }
73     }
74   }
75   post {
76     always {
77       junit testResults: "**/surefire-reports/*.xml", allowEmptyResults: true
78       sshPublisher(publishers: [
79         sshPublisherDesc(configName: 'Nightlies',
80           transfers: [
81             sshTransfer(remoteDirectory: "hbase/${JOB_NAME}/${BUILD_NUMBER}",
82               sourceFiles: "**/surefire-reports/*,**/test-data/*"
83             )
84           ]
85         )
86       ])
87       sh '''#!/bin/bash -e
88         echo "${ASF_NIGHTLIES}/hbase/${JOB_NAME}/${BUILD_NUMBER}" > "test_logs.txt"
89       '''
90       archiveArtifacts artifacts: 'includes.txt,test_logs.txt,target/machine/*'
91     }
92   }