We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e104ce9 commit 6b94a15Copy full SHA for 6b94a15
.gitlab-ci.yml
@@ -1,9 +1,8 @@
1
benchmark:
2
script:
3
- - ./scripts/run_micro_bench.sh
+ - ./test.sh
4
artifacts:
5
paths:
6
- results/*
7
- - build/*
8
expire_in: 1 week
9
when: manual
scripts/run_micro_bench.sh renamed to test.sh
@@ -1,8 +1,10 @@
#!/bin/bash
# This is what is run on the benchmark machine when you push to the repository
mkdir build
-cd build; cmake -DCMAKE_BUILD_TYPE=Release ..;make;cd ..
+cd build;
+cmake -DCMAKE_BUILD_TYPE=Release ..
+make -j 8
+cd ..
mkdir results
-cd build/micro_benchs;
-pwd
+cd build/micro_benchs
10
./hca_mb > ../../results/hca_mb.txt
0 commit comments