Browse Source

[TravisCI] only run HL/JIT in 32-bit builds

Andy Li 8 years ago
parent
commit
ddfcc6dd0f
1 changed files with 5 additions and 3 deletions
  1. 5 3
      .travis.yml

+ 5 - 3
.travis.yml

@@ -115,7 +115,9 @@ install:
 
 script:
   - if [ "$ARCH" = "32" ]; then
-      haxe -hl hello.hl -cp other/tests -main HelloWorld -D interp;
+      haxe -hl hello.hl -cp other/tests -main HelloWorld -D interp &&
+      ./hl hello.hl;
     fi
-  - ./hl hello.hl
-  - haxe -hl src/_main.c -cp other/tests -main HelloWorld && make hlc && ./hlc
+  - haxe -hl src/_main.c -cp other/tests -main HelloWorld &&
+    make hlc &&
+    ./hlc