Created
August 12, 2019 03:52
-
-
Save mgenov/aaa64b7b027cb9a86d4ed60ffb4a7bd2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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