File tree 2 files changed +5
-3
lines changed 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 41
41
- ubuntu-20.04
42
42
sdk :
43
43
- stable
44
+ - 2.14.0
45
+ - 2.13.0
44
46
- 2.12.0 # currently the lowest fully supported version (i.e. generator + lib)
45
47
runs-on : ${{ matrix.os }}
46
48
steps :
Original file line number Diff line number Diff line change 1
1
. " $( dirname " $0 " ) " /common.sh
2
2
3
- # Note: when you see the process seemingly stuck after printing "All tests passed!", it's because dart2native produced
4
- # binaries will wait for any background isolates to finish before stopping the process.
3
+ # Note: when you see the process seemingly stuck after printing "All tests passed!", it's because `dart compile exe`
4
+ # produced binaries will wait for any background isolates to finish before stopping the process.
5
5
# For example, the following code has the issue: `HttpClient().get(...)`
6
6
# while `final httpClient = HttpClient(); httpClient.get(...); httpClient.close(force: true);` works fine.
7
7
@@ -19,7 +19,7 @@ mkdir -pv "${testDir}"
19
19
function testWithValgrind() {
20
20
echo " Running $1 with valgrind"
21
21
testExe=" ${testDir} /${1% .* } "
22
- dart2native " ${root} /test/${1} " --output " ${testExe} " --verbose
22
+ dart compile exe " ${root} /test/${1} " --output " ${testExe} " --verbose
23
23
valgrind \
24
24
--leak-check=full \
25
25
--error-exitcode=1 \
You can’t perform that action at this time.
0 commit comments