blob: 707560104c8f3e0beb8ae32ae40c286f427a5fe8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
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 && \
rm -rf gpgpu-sim_simulations && \
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'
emailex
body: '''$PROJECT_NAME - Build # $BUILD_NUMBER - $BUILD_STATUS:
Check console output at $BUILD_URL to view the results.''',
recipientProviders: [[$class: 'CulpritsRecipientProvider'],
[$class: 'RequesterRecipientProvider']],
replyTo: '[email protected]',
subject: '[AALP Jenkins]: $PROJECT_NAME - Build # $BUILD_NUMBER - $BUILD_STATUS!',
to: '[email protected]'
}
}
}
}
|