summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortgrogers <[email protected]>2017-07-12 15:14:48 -0400
committertgrogers <[email protected]>2017-07-12 15:14:48 -0400
commite9736f3b054062744c4bb81d38b7402944eb5480 (patch)
tree6f7e2d7a495dab92e7cf998d535c8850339f372f
parentbe451de4abf4fac2ea4b8bd2a79c6037ac635990 (diff)
Adding in the jenkinsfile that can be used for automatic regression on Purdue's end
-rw-r--r--Jenkinsfile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000..86ca78f
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,13 @@
+pipeline {
+ agent {
+ label "purdue-cluster"
+ }
+
+ stages {
+ stage('4.2-regress') {
+ steps {
+ sh 'source /home/tgrogers-raid/a/common/gpgpu-sim-setup/4.2_env_setup.sh && source `pwd`/setup_environment && make -j && git clone https://github.com/tgrogers/gpgpu-sim_simulations.git && cd gpgpu-sim_simulations && git checkout purdue-cluster && make -j -C ./benchmarks/src all && ./util/job_launching/run_simulations.py -N regress &&./util/job_launching/monitor_func_test.py -v -N regress'
+ }
+ }
+ }
+}