Skip to content

Commit 6b94a15

Browse files
committed
Update build script
1 parent e104ce9 commit 6b94a15

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.gitlab-ci.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
benchmark:
22
script:
3-
- ./scripts/run_micro_bench.sh
3+
- ./test.sh
44
artifacts:
55
paths:
66
- results/*
7-
- build/*
87
expire_in: 1 week
98
when: manual
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#!/bin/bash
22
# This is what is run on the benchmark machine when you push to the repository
33
mkdir build
4-
cd build; cmake -DCMAKE_BUILD_TYPE=Release ..;make;cd ..
4+
cd build;
5+
cmake -DCMAKE_BUILD_TYPE=Release ..
6+
make -j 8
7+
cd ..
58
mkdir results
6-
cd build/micro_benchs;
7-
pwd
9+
cd build/micro_benchs
810
./hca_mb > ../../results/hca_mb.txt

0 commit comments

Comments
 (0)