Skip to content

Commit

Permalink
[ci] Run one test of disjoint and buffer at a time to avoid errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
awulkiew committed Jun 3, 2021
1 parent e1571b3 commit 14aa054
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# CircleCI 2.0 for Boost.Geometry
#
# Copyright (c) 2018 Mateusz Loskot <[email protected]>
# Copyright (c) 2018 Adam Wulkiewicz, Lodz, Poland
# Copyright (c) 2018-2021 Adam Wulkiewicz, Lodz, Poland
#
# Use, modification and distribution is subject to the Boost Software License,
# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
Expand Down Expand Up @@ -88,7 +88,8 @@ jobs:
<<: *config
steps:
- *attach_workspace
- run: ./$BOOST_DIR/libs/geometry/.circleci/run_test.sh algorithms_buffer test/algorithms/buffer
# 1 test at a time to avoid fatal error: ... No space left on device
- run: ./$BOOST_DIR/libs/geometry/.circleci/run_test.sh algorithms_buffer test/algorithms/buffer 1
- persist_to_workspace:
root: ~/project
paths:
Expand Down Expand Up @@ -124,7 +125,8 @@ jobs:
<<: *config
steps:
- *attach_workspace
- run: ./$BOOST_DIR/libs/geometry/.circleci/run_test.sh algorithms_disjoint test/algorithms/disjoint
# 1 test at a time to decrease memory consumption causing gcc internal error
- run: ./$BOOST_DIR/libs/geometry/.circleci/run_test.sh algorithms_disjoint test/algorithms/disjoint 1
- persist_to_workspace:
root: ~/project
paths:
Expand Down

0 comments on commit 14aa054

Please sign in to comment.