C-Thread-Pool/.circleci/config.yml
2022-11-30 23:47:27 +00:00

32 lines
609 B
YAML

version: 2.1
jobs:
test-normal-compile:
docker:
- image: pithikos/test-c-thread-pool
steps:
- checkout
- run:
name: Test
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-normal-compile
- test-optimized-compile