diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-03-20 18:27:14 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-03-20 18:54:47 -0400 |
commit | 9831a440ca0f2186c4a1afe981a31dabf6084099 (patch) | |
tree | 82adcd19fd4071675d3e3fe428c80f6f574a15ad | |
parent | 9444bd71a0b9165ef1a900f19b08a88592d2bb5c (diff) |
Disable arm test again
getting this failure on travis:
https://travis-ci.com/denoland/deno/jobs/186518015
$ $CARGO_TARGET_DIR/aarch64-unknown-linux-gnu/release/deno tests/002_hello.ts
qemu: Unsupported syscall: 278
qemu: Unsupported syscall: 278
Compiling file:///home/travis/build/denoland/deno/tests/002_hello.ts
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 5832571ed..df7aab214 100644 --- a/.travis.yml +++ b/.travis.yml @@ -131,7 +131,7 @@ jobs: - sudo apt -yq install qemu qemu-user binfmt-support qemu-user-binfmt - sudo ln -s /usr/aarch64-linux-gnu/lib/ld-linux-aarch64.so.1 /lib/ld-linux-aarch64.so.1 - export QEMU_LD_PREFIX=/usr/aarch64-linux-gnu - - $CARGO_TARGET_DIR/aarch64-unknown-linux-gnu/release/deno tests/002_hello.ts + #- $CARGO_TARGET_DIR/aarch64-unknown-linux-gnu/release/deno tests/002_hello.ts # - DENO_BUILD_MODE=release ./tools/test.py $CARGO_TARGET_DIR/aarch64-unknown-linux-gnu/release TODO(afinch7): Get the tests working - name: "cargo release linux x86_64" |