mirror of
https://github.com/Pithikos/C-Thread-Pool
synced 2024-11-29 16:53:18 +03:00
32 lines
609 B
YAML
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
|