diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2016-05-24 11:40:46 -0700 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2016-05-25 21:37:58 -0700 |
commit | 4e2c743ebabbbd78e49b1f645def99aaa328324e (patch) | |
tree | 875a0e97425df740d4372b27435fcb7c13e6dc4a | |
parent | 672eb610799c95aad37fe62eccdd11eca1e5e8f7 (diff) | |
download | qtlocation-mapboxgl-4e2c743ebabbbd78e49b1f645def99aaa328324e.tar.gz |
[android] Install node in CI
-rw-r--r-- | platform/android/bitrise.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/platform/android/bitrise.yml b/platform/android/bitrise.yml index 84cbd777fe..bf4ba178e2 100644 --- a/platform/android/bitrise.yml +++ b/platform/android/bitrise.yml @@ -30,7 +30,8 @@ workflows: - content: |- #!/bin/bash set -eu -o pipefail - apt-get install -y pkg-config + curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash - + sudo apt-get install -y pkg-config nodejs export BUILDTYPE=Release make android make test-android |