We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf39a3c commit f0c7f5cCopy full SHA for f0c7f5c
1 file changed
ci/Jenkinsfile
@@ -8,7 +8,14 @@ pipeline {
8
stages {
9
stage('main') {
10
agent {
11
- docker { image 'quay.io/pypa/manylinux2014_x86_64' }
+ kubernetes {
12
+ yaml '''
13
+ spec:
14
+ containers:
15
+ - name: manylinux
16
+ image: quay.io/pypa/manylinux2014_x86_64
17
+ '''
18
+ }
19
}
20
environment {
21
HOME = "${WORKSPACE}"
@@ -22,7 +29,7 @@ pipeline {
22
29
23
30
24
31
25
- post {
32
+ /* post {
26
33
failure {
27
34
emailext subject: '$PROJECT_NAME - Build #$BUILD_NUMBER - $BUILD_STATUS',
28
35
body: '''$PROJECT_NAME - Build #$BUILD_NUMBER - $BUILD_STATUS
@@ -38,7 +45,7 @@ ${BUILD_LOG,maxLines=200}
38
45
[$class: 'DevelopersRecipientProvider'],
39
46
],
40
47
replyTo: '$DEFAULT_REPLYTO',
41
- to: 'rblackwell@flatironinstitute.org'
48
+ to: 'dsimon@flatironinstitute.org'
42
49
43
- }
50
+ } */
44
51
0 commit comments