-
Notifications
You must be signed in to change notification settings - Fork 88
/
Jenkinsfile.windows
60 lines (55 loc) · 2.27 KB
/
Jenkinsfile.windows
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
51
52
53
54
55
56
57
58
59
60
/*
* Copyright 2020 Google Inc.
*
* Licensed 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.
*/
// Windows Agent IT pipeline, run manually.
pipeline {
agent {
kubernetes {
cloud 'kubernetes'
label 'windows-pod'
yamlFile 'jenkins/maven-pod.yaml'
}
}
environment {
GOOGLE_PROJECT_ID = "${GCE_IT_PROJECT_ID}"
GOOGLE_REGION = "${GCE_IT_REGION}"
GOOGLE_ZONE = "${GCE_IT_ZONE}"
GOOGLE_SA_NAME = "${GCE_IT_SA}"
GOOGLE_BOOT_DISK_PROJECT_ID = "${GCE_WINDOWS_IT_IMAGE_PROJECT}"
GOOGLE_BOOT_DISK_IMAGE_NAME = "${GCE_WINDOWS_IT_IMAGE_NAME}"
BUILD_ARTIFACTS_BUCKET = "${GCE_IT_BUCKET}"
CLEAN_BRANCH_NAME = "${BRANCH_NAME}".replaceAll("[/&;<>|\\]]", "_")
BUILD_ARTIFACTS = "windows-${CLEAN_BRANCH_NAME}-${BUILD_ID}.tar.gz"
}
stages {
stage("Build and test") {
steps {
container('maven') {
withCredentials([[$class: 'StringBinding', credentialsId: env.GCE_IT_CRED_ID, variable: 'GOOGLE_CREDENTIALS'],
[$class: 'StringBinding', credentialsId: env.GCE_WINDOWS_IT_JENKINS_PASSWORD, variable: 'GOOGLE_JENKINS_PASSWORD']]) {
catchError {
// build
sh "mvn clean package -ntp"
// run tests
sh "mvn verify -ntp -Dit.windows=true -DskipITs=false"
}
sh "jenkins/saveAndCompress.sh"
step([$class: 'ClassicUploadStep', credentialsId: env.GCE_BUCKET_CRED_ID, bucket: "gs://${BUILD_ARTIFACTS_BUCKET}", pattern: env.BUILD_ARTIFACTS])
}
}
}
}
}
}