Skip to content

Commit

Permalink
move benchmark into its own job
Browse files Browse the repository at this point in the history
That way, it can be ran in parallel with the test suite.

Refs: scality#251
  • Loading branch information
slaperche-scality committed Oct 15, 2018
1 parent 82bff06 commit 44de3cc
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 44de3cc

Please sign in to comment.