Skip to content

Commit fa16aec

Browse files
committed
Merge branch 'master' into blocking-loop
2 parents 327a8e5 + ccba54e commit fa16aec

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,10 @@ jobs:
3737
- name: Setup haxelib
3838
run: |
3939
haxelib newrepo
40-
${{ matrix.target == 'jvm' }} && haxelib install hxjava || true
41-
${{ matrix.target == 'cpp' }} && haxelib git hxcpp https://github.com/HaxeFoundation/hxcpp.git && haxe --cwd .haxelib/hxcpp/git/tools/hxcpp compile.hxml || true
42-
${{ matrix.target == 'cpp' }} && haxelib git hxcpp_luv_io https://github.com/Aidan63/hxcpp_luv_io || true
40+
${{ matrix.target != 'jvm' }} || haxelib install hxjava
41+
${{ matrix.target != 'cpp' }} || haxelib git hxcpp https://github.com/HaxeFoundation/hxcpp.git
42+
${{ matrix.target != 'cpp' }} || haxe --cwd .haxelib/hxcpp/git/tools/hxcpp compile.hxml
43+
${{ matrix.target != 'cpp' }} || haxelib git hxcpp_luv_io https://github.com/Aidan63/hxcpp_luv_io
4344
haxelib git utest https://github.com/haxe-utest/utest.git
4445
haxelib dev hxcoro .
4546
haxelib list
@@ -48,6 +49,6 @@ jobs:
4849
4950
- name: Run tests
5051
run: |
51-
${{ matrix.target != 'cpp' }} && haxe --cwd tests -debug build-${{ matrix.target }}.hxml || true
52+
${{ matrix.target == 'cpp' }} || haxe --cwd tests -debug build-${{ matrix.target }}.hxml
5253
haxe --cwd tests build-${{ matrix.target }}.hxml --hxb bin/test.hxb
53-
haxe --cwd tests build-${{ matrix.target }}.hxml --hxb-lib bin/test.hxb
54+
${{ matrix.target == 'cpp' }} || haxe --cwd tests build-${{ matrix.target }}.hxml --hxb-lib bin/test.hxb

0 commit comments

Comments
 (0)