Skip to content

Commit

Permalink
move benchmark into its own job
Browse files Browse the repository at this point in the history
  • Loading branch information
slaperche-scality committed Oct 12, 2018
1 parent 7a7e117 commit 0566905
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,17 @@ jobs:
- run:
name: Unit tests
command: cd build && make check
benchmark:
docker:
- image: slaperche0scality/quadiron:latest
steps:
- checkout
- run:
name: Compilation
command: >
mkdir build && cd build &&
cmake -G 'Unix Makefiles' -DCMAKE_BUILD_TYPE=Release -DUSE_SIMD=ON 'Unix Makefiles' .. &&
make
- run:
name: Benchmark
command: cd build && make benchmark
Expand All @@ -71,3 +82,4 @@ workflows:
- build
- android
- test
- benchmark

0 comments on commit 0566905

Please sign in to comment.