Skip to content

Commit f0c7f5c

Browse files
committed
testing jenkins k8s
1 parent cf39a3c commit f0c7f5c

1 file changed

Lines changed: 11 additions & 4 deletions

File tree

ci/Jenkinsfile

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,14 @@ pipeline {
88
stages {
99
stage('main') {
1010
agent {
11-
docker { image 'quay.io/pypa/manylinux2014_x86_64' }
11+
kubernetes {
12+
yaml '''
13+
spec:
14+
containers:
15+
- name: manylinux
16+
image: quay.io/pypa/manylinux2014_x86_64
17+
'''
18+
}
1219
}
1320
environment {
1421
HOME = "${WORKSPACE}"
@@ -22,7 +29,7 @@ pipeline {
2229
}
2330
}
2431
}
25-
post {
32+
/* post {
2633
failure {
2734
emailext subject: '$PROJECT_NAME - Build #$BUILD_NUMBER - $BUILD_STATUS',
2835
body: '''$PROJECT_NAME - Build #$BUILD_NUMBER - $BUILD_STATUS
@@ -38,7 +45,7 @@ ${BUILD_LOG,maxLines=200}
3845
[$class: 'DevelopersRecipientProvider'],
3946
],
4047
replyTo: '$DEFAULT_REPLYTO',
41-
to: 'rblackwell@flatironinstitute.org'
48+
to: 'dsimon@flatironinstitute.org'
4249
}
43-
}
50+
} */
4451
}

0 commit comments

Comments
 (0)