Skip to content
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.

Commit

Permalink
Quick fix for broken Jenkinsfile.
Browse files Browse the repository at this point in the history
I edited this file directly on GitHub without testing it first. Don't do what Andy did, kids. I'm not proud of this
  • Loading branch information
apavlo committed Jul 3, 2020
1 parent 45bfdcc commit 6158e15
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions Jenkinsfile
Expand Up @@ -352,7 +352,17 @@ pipeline {
}
}
}

stage('End-to-End Performance') {
agent { label 'benchmark' }
steps {
sh 'echo $NODE_NAME'
sh 'echo y | sudo ./script/installation/packages.sh all'
sh 'mkdir build'
sh 'cd build && cmake -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_BUILD_TYPE=Release -DTERRIER_USE_ASAN=OFF -DTERRIER_USE_JEMALLOC=ON -DTERRIER_BUILD_TESTS=OFF .. && make -j$(nproc) terrier'
sh "cd build && python3 ../script/testing/oltpbench/run_oltpbench.py tatp 2,35,10,35,2,14,2 --build-type=release \
--loader-threads=4 --client-time=60 --terminals=8"
}
}
stage('Microbenchmark') {
agent { label 'benchmark' }
steps {
Expand All @@ -373,16 +383,5 @@ pipeline {
}
}
}
stage('Performance') {
agent { label: 'benchmark' }
steps {
sh 'echo $NODE_NAME'
sh 'echo y | sudo ./script/installation/packages.sh all'
sh 'mkdir build'
sh 'cd build && cmake -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_BUILD_TYPE=Release -DTERRIER_USE_ASAN=OFF -DTERRIER_USE_JEMALLOC=ON -DTERRIER_BUILD_TESTS=OFF .. && make -j$(nproc) terrier'
sh "cd build && python3 ../script/testing/oltpbench/run_oltpbench.py tatp 2,35,10,35,2,14,2 --build-type=release \
--loader-threads=4 --client-time=60 --terminals=8"
}
}
}
}

0 comments on commit 6158e15

Please sign in to comment.