summaryrefslogtreecommitdiff
path: root/nightly.jenkinsfile
diff options
context:
space:
mode:
authortgrogers <[email protected]>2019-08-26 14:55:55 -0400
committertgrogers <[email protected]>2019-08-26 14:55:55 -0400
commit841bb925e7ff06d7165f14fe2d1fce6561ab29b9 (patch)
tree90446d5aed4adcccff0f819bf32ec2ae40e2ac18 /nightly.jenkinsfile
parent2f5b3332c9b9b3fa9fea43d61276bddb24aa7df2 (diff)
Limiting make's paralllelism so that we (hopefully) stop running out of process handles when people submit code
Diffstat (limited to 'nightly.jenkinsfile')
-rw-r--r--nightly.jenkinsfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/nightly.jenkinsfile b/nightly.jenkinsfile
index e5ffa57..79e2719 100644
--- a/nightly.jenkinsfile
+++ b/nightly.jenkinsfile
@@ -17,7 +17,7 @@ pipeline {
steps {
sh 'source /home/tgrogers-raid/a/common/gpgpu-sim-setup/9.1_env_setup.sh &&\
source `pwd`/setup_environment &&\
- make -j'
+ make -j 10'
}
}
stage('nightly-simulations-build'){
@@ -34,7 +34,7 @@ pipeline {
source `pwd`/setup_environment &&\
cd gpgpu-sim_simulations && \
source ./benchmarks/src/setup_environment && \
- make -i -j -C ./benchmarks/src/ all && \
+ make -i -j 10 -C ./benchmarks/src/ all && \
make -C ./benchmarks/src data'
}
}