Skip to content

Commit 50c3863

Browse files
committed
Add Jenkinsfile - trigger a build when PythonBridge is changed
1 parent 7e4874d commit 50c3863

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Jenkinsfile

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
pipeline {
2+
agent any
3+
stages {
4+
stage('Build gtoolkit') {
5+
when { expression {
6+
env.BRANCH_NAME.toString().equals('main') && (env.TAG_NAME == null)
7+
}
8+
}
9+
steps {
10+
build(job: '../gtoolkit/main', wait: false)
11+
}
12+
}
13+
}
14+
}

0 commit comments

Comments
 (0)