File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88 # well on Windows or Mac. You can convert this to a matrix build if you need
99 # cross-platform coverage.
1010 # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
11- runs-on : ubuntu-latest
11+ # runs-on: ubuntu-latest
12+
13+ strategy :
14+ matrix :
15+ include :
16+ - os : ubuntu-latest
17+ cpp-version : gcc-8
18+ - os : ubuntu-latest
19+ cpp-version : gcc-9
20+
21+
1222
1323 steps :
1424 - uses : actions/checkout@v2
Original file line number Diff line number Diff line change @@ -745,7 +745,7 @@ inline void Executor::_tear_down_invoke(Node* node) {
745745 // async task is a special case
746746 case Node::ASYNC_TASK: {
747747 if (node->_parent ) {
748- assert (node->_topology );
748+ // assert(node->_topology);
749749 node->_parent ->_join_counter .fetch_sub (1 );
750750 }
751751 else {
You can’t perform that action at this time.
0 commit comments