Skip to content

Instantly share code, notes, and snippets.

@mgenov
Created August 12, 2019 03:52
Show Gist options
  • Save mgenov/aaa64b7b027cb9a86d4ed60ffb4a7bd2 to your computer and use it in GitHub Desktop.
Save mgenov/aaa64b7b027cb9a86d4ed60ffb4a7bd2 to your computer and use it in GitHub Desktop.
pipeline {
agent any
stages {
stage('build matchengine') {
when {
changeset "**/matchengine/*.*"
}
steps {
echo 'building match engine'
}
}
stage('build posttrade') {
when {
changeset "**/posttrade/*.*"
}
steps {
echo 'building post trade'
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment