Jenkinsfile 3.5 KB
Newer Older
1

L
liuyq-617 已提交
2 3
properties([pipelineTriggers([githubPush()])])
node {
4
    git url: 'https://github.com/taosdata/TDengine'
L
liuyq-617 已提交
5 6
}

7

L
liuyq-617 已提交
8
// execute this before anything else, including requesting any time on an agent
L
liuyq-617 已提交
9 10 11 12 13
// if (currentBuild.rawBuild.getCauses().toString().contains('BranchIndexingCause')) {
//   print "INFO: Build skipped due to trigger being Branch Indexing"
//   currentBuild.result = 'ABORTED' // optional, gives a better hint to the user that it's been skipped, rather than the default which shows it's successful
//   return
// }
L
liuyq-617 已提交
14

L
liuyq-617 已提交
15

L
liuyq-617 已提交
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
// def pre_test(){
//     catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
//                 sh '''
//                 sudo rmtaos
//                 '''
//     }
//     sh '''
//     cd ${WKC}
//     rm -rf *
//     cd ${WK}
//     git reset --hard
//     git checkout develop
//     git pull
//     cd ${WKC}
//     rm -rf *
//     mv ${WORKSPACE}/* .
//     cd ${WK}
//     export TZ=Asia/Harbin
//     date
//     rm -rf ${WK}/debug
//     mkdir debug
//     cd debug
//     cmake .. > /dev/null
//     make > /dev/null
//     make install > /dev/null
//     cd ${WKC}/tests
//     '''
//     return 1
// }
// pipeline {
//   agent none
//   environment{
//       WK = '/var/lib/jenkins/workspace/TDinternal'
//       WKC= '/var/lib/jenkins/workspace/TDinternal/community'
//   }
L
liuyq-617 已提交
51

L
liuyq-617 已提交
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
//   stages {
//       stage('Parallel test stage') {
//       parallel {
//         stage('python p1') {
//           agent{label 'p1'}
//           steps {
//             pre_test()
//             sh '''
//             cd ${WKC}/tests
//             ./test-all.sh p1
//             date'''
//           }
//         }
//         stage('test_b1') {
//           agent{label 'master'}
//           steps {
//             pre_test()
//             sh '''
//             cd ${WKC}/tests
//             ./test-all.sh b1
//             date'''
//           }
//         }
L
liuyq-617 已提交
75

L
liuyq-617 已提交
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
//         stage('test_crash_gen') {
//           agent{label "b2"}
//           steps {
//             pre_test()
//             catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
//                 sh '''
//                 cd ${WKC}/tests/pytest
//                 ./crash_gen.sh -a -p -t 4 -s 2000
//                 '''
//             }
//             catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
//                 sh '''
//                 cd ${WKC}/tests/pytest
//                 ./handle_crash_gen_val_log.sh
//                 '''
//             }
//             sh '''
//             date
//             cd ${WKC}/tests
//             ./test-all.sh b2
//             date
//             '''
//           }
//         }
L
liuyq-617 已提交
100

L
liuyq-617 已提交
101 102
//         stage('test_valgrind') {
//           agent{label "b3"}
L
liuyq-617 已提交
103

L
liuyq-617 已提交
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
//           steps {
//             pre_test()
//             catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
//                 sh '''
//                 cd ${WKC}/tests/pytest
//                 ./valgrind-test.sh 2>&1 > mem-error-out.log
//                 ./handle_val_log.sh
//                 '''
//             }           
//             sh '''
//             date
//             cd ${WKC}/tests
//             ./test-all.sh b3
//             date'''
//           }
//         }
//        stage('python p2'){
//          agent{label "p2"}
//          steps{
//             pre_test()         
//             sh '''
//             date
//             cd ${WKC}/tests
//             ./test-all.sh p2
//             date
//             '''
L
liuyq-617 已提交
130
          
L
liuyq-617 已提交
131 132
//          }
//        }
L
liuyq-617 已提交
133 134
       
          
L
liuyq-617 已提交
135 136
//       }
//     }
L
liuyq-617 已提交
137

L
liuyq-617 已提交
138
//   }
L
liuyq-617 已提交
139
  
L
liuyq-617 已提交
140
// }