Skip to content

Commit 3be92ac

Browse files
committed
updated ubuntu.yml
1 parent c654473 commit 3be92ac

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

.github/workflows/ubuntu.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,17 @@ jobs:
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

taskflow/core/executor.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)