Skip to content

Commit

Permalink
Debug CI
Browse files Browse the repository at this point in the history
  • Loading branch information
arg0d committed Jan 3, 2025
1 parent 7a8072c commit 280460c
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ print("AAAAAAAAAAAAAAAAAAAAAAA 6")
fflush(stdout)

var counter = DispatchGroup()
print("AAAAAAAAAAAAAAAAAAAAAAA 6.1")
counter.enter()
print("AAAAAAAAAAAAAAAAAAAAAAA 6.2")
Task {
print("BBBBBBBBBBBBBBBBBBBB 1")
// This async function comes from the `uniffi-one` crate
Expand All @@ -65,8 +67,11 @@ Task {
print("BBBBBBBBBBBBBBBBBBBB 5")

counter.leave()
print("BBBBBBBBBBBBBBBBBBBB 6")
}
print("AAAAAAAAAAAAAAAAAAAAAAA 6.3")
counter.wait()
print("AAAAAAAAAAAAAAAAAAAAAAA 6.4")

print("AAAAAAAAAAAAAAAAAAAAAAA 7")
fflush(stdout)
Expand Down

0 comments on commit 280460c

Please sign in to comment.