Changeset 38bfe05b for Jenkinsfile
- Timestamp:
- May 26, 2017, 6:56:19 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 8c700c1, 8f61052c
- Parents:
- 01b9928 (diff), 5c69a1e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r01b9928 r38bfe05b 28 28 wrap([$class: 'TimestamperBuildWrapper']) { 29 29 30 notify_server( )30 notify_server(1) 31 31 32 32 prepare_build() … … 46 46 publish() 47 47 48 notify_server( )48 notify_server(45) 49 49 } 50 50 } … … 171 171 } 172 172 173 def notify_server( ) {174 sh 'curl --silent -X POST http://plg2:8082/jenkins/notify > /dev/null || true'173 def notify_server(int wait) { 174 sh """curl --silent --data "wait=${wait}" -X POST http://plg2:8082/jenkins/notify > /dev/null || true""" 175 175 return 176 176 }
Note: See TracChangeset
for help on using the changeset viewer.