Skip to content

Commit

Permalink
Try running only one header test at a time (to reduce memory usage)
Browse files Browse the repository at this point in the history
  • Loading branch information
msimberg committed Jan 31, 2018
1 parent 947e8f8 commit a315e2e
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .circleci/config.yml
Expand Up @@ -509,7 +509,7 @@ jobs:
- run:
name: Building Header Tests
command: |
ctest -j2 -T test --no-compress-output --output-on-failure -R tests.headers.headers.compat
ctest -j1 -T test --no-compress-output --output-on-failure -R tests.headers.headers.compat
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -528,7 +528,7 @@ jobs:
- run:
name: Building Header Tests
command: |
ctest -j2 -T test --no-compress-output --output-on-failure -R tests.headers.headers.components
ctest -j1 -T test --no-compress-output --output-on-failure -R tests.headers.headers.components
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -547,7 +547,7 @@ jobs:
- run:
name: Building Header Tests
command: |
ctest -j2 -T test --no-compress-output --output-on-failure -R tests.headers.headers.compute
ctest -j1 -T test --no-compress-output --output-on-failure -R tests.headers.headers.compute
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -566,7 +566,7 @@ jobs:
- run:
name: Building Header Tests
command: |
ctest -j2 -T test --no-compress-output --output-on-failure -R tests.headers.headers.config
ctest -j1 -T test --no-compress-output --output-on-failure -R tests.headers.headers.config
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -585,7 +585,7 @@ jobs:
- run:
name: Building Header Tests
command: |
ctest -j2 -T test --no-compress-output --output-on-failure -R tests.headers.headers.include
ctest -j1 -T test --no-compress-output --output-on-failure -R tests.headers.headers.include
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -604,7 +604,7 @@ jobs:
- run:
name: Building Header Tests
command: |
ctest -j2 -T test --no-compress-output --output-on-failure -R tests.headers.headers.lcos
ctest -j1 -T test --no-compress-output --output-on-failure -R tests.headers.headers.lcos
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -623,7 +623,7 @@ jobs:
- run:
name: Building Header Tests
command: |
ctest -j2 -T test --no-compress-output --output-on-failure -R tests.headers.headers.parallel
ctest -j1 -T test --no-compress-output --output-on-failure -R tests.headers.headers.parallel
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -642,7 +642,7 @@ jobs:
- run:
name: Building Header Tests
command: |
ctest -j2 -T test --no-compress-output --output-on-failure -R tests.headers.headers.performance_counters
ctest -j1 -T test --no-compress-output --output-on-failure -R tests.headers.headers.performance_counters
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -661,7 +661,7 @@ jobs:
- run:
name: Building Header Tests
command: |
ctest -j2 -T test --no-compress-output --output-on-failure -R tests.headers.headers.plugins
ctest -j1 -T test --no-compress-output --output-on-failure -R tests.headers.headers.plugins
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -680,7 +680,7 @@ jobs:
- run:
name: Building Header Tests
command: |
ctest -j2 -T test --no-compress-output --output-on-failure -R tests.headers.headers.runtime
ctest -j1 -T test --no-compress-output --output-on-failure -R tests.headers.headers.runtime
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -699,7 +699,7 @@ jobs:
- run:
name: Building Header Tests
command: |
ctest -j2 -T test --no-compress-output --output-on-failure -R tests.headers.headers.traits
ctest -j1 -T test --no-compress-output --output-on-failure -R tests.headers.headers.traits
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -718,7 +718,7 @@ jobs:
- run:
name: Building Header Tests
command: |
ctest -j2 -T test --no-compress-output --output-on-failure -R tests.headers.headers.util
ctest -j1 -T test --no-compress-output --output-on-failure -R tests.headers.headers.util
- run:
<<: *convert_xml
- store_test_results:
Expand Down

0 comments on commit a315e2e

Please sign in to comment.