Changes in Jenkinsfile [245510f:7ef1555e]
- File:
-
- 1 edited
-
Jenkinsfile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r245510f r7ef1555e 5 5 //=========================================================================================================== 6 6 //Compilation script is done here but environnement set-up and error handling is done in main loop 7 def cfa_build( ) {7 def cfa_build(boolean full_build) { 8 8 build_stage 'Checkout' 9 9 def install_dir = pwd tmp: true … … 28 28 //Run the tests from the example directory 29 29 dir ('src/tests') { 30 sh './runTests.sh' 30 if (full_build) { 31 sh 'python test.py --all' 32 } 33 else { 34 sh './runTests.sh' 35 } 31 36 } 32 37
Note:
See TracChangeset
for help on using the changeset viewer.