diff options
| author | tgrogers <[email protected]> | 2018-03-13 16:04:07 -0400 |
|---|---|---|
| committer | tgrogers <[email protected]> | 2018-03-13 16:04:07 -0400 |
| commit | dafe4afd3e4a8a53fc0294b8769787ebf895cb9d (patch) | |
| tree | c5efa70f219fb4b22d8eba92ab289ca5731f306b | |
| parent | d907266173d129c0e5f1fd7902a77ab30c43ad73 (diff) | |
explicitly get the data here
| -rw-r--r-- | Jenkinsfile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 00f760e..55bfaf8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -28,12 +28,14 @@ pipeline { source `pwd`/setup_environment &&\ cd gpgpu-sim_simulations && \ source ./benchmarks/src/setup_environment && \ - make -j -C ./benchmarks/src all' + make -j -C ./benchmarks/src all' && \ + make -C ./benchmarks/src data' sh 'source /home/tgrogers-raid/a/common/gpgpu-sim-setup/9.1_env_setup.sh &&\ source `pwd`/setup_environment &&\ cd gpgpu-sim_simulations && \ source ./benchmarks/src/setup_environment && \ - make -j -C ./benchmarks/src/ all' + make -j -C ./benchmarks/src/ all' && \ + make -C ./benchmarks/src data' } } stage('regress'){ |
