Skip to content

Commit

Permalink
Run tests in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
Pithikos committed Nov 30, 2022
1 parent 3853d02 commit 094a64e
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,31 @@
version: 2.1

jobs:
test:
test-normal-compile:
docker:
- image: pithikos/test-c-thread-pool
steps:
- checkout
- run:
name: Test
no_output_timeout: 3h
no_output_timeout: 2h
command: |
cd tests/
./normal_compile.sh
test-optimized-compile:
docker:
- image: pithikos/test-c-thread-pool
steps:
- checkout
- run:
name: Test
no_output_timeout: 2h
command: |
cd tests/
./optimized_compile.sh
workflows:
test:
jobs:
- test
- test-normal-compile
- test-optimized-compile

0 comments on commit 094a64e

Please sign in to comment.