summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDane Springmeyer <springmeyer@users.noreply.github.com>2017-05-04 16:43:54 -0700
committerBobby Sudekum <bobby@mapbox.com>2017-05-04 16:43:54 -0700
commitbf959b9d866b20b5563bd748313a10f9804b03c1 (patch)
tree6dc5744458aebbe8d0038e19817bd0c1490cb874
parent6868b2557d5b16cbd6ac1765f249cab9a697b1bd (diff)
downloadqtlocation-mapboxgl-bf959b9d866b20b5563bd748313a10f9804b03c1.tar.gz
[node] start publishing both release+debug builds (#8865)
-rw-r--r--.travis.yml4
-rw-r--r--package.json2
-rwxr-xr-xplatform/node/scripts/after_success.sh7
3 files changed, 8 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index 4895301b38..5c9d29f3b2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -119,6 +119,8 @@ matrix:
env: BUILDTYPE=Debug _CXX=clang++-3.9 _CC=clang-3.9 WITH_EGL=1
addons: *clang39
before_script:
+ - export PACKAGE_JSON_VERSION=$(node -e "console.log(require('./package.json').version)")
+ - export PUBLISH=$([[ "${TRAVIS_TAG:-}" == "node-v${PACKAGE_JSON_VERSION}" ]] && echo true)
- mapbox_install_logbt
- mapbox_start_xvfb
- mapbox_export_mesa_library_path
@@ -130,6 +132,8 @@ matrix:
after_script:
- ccache --show-stats
- ./platform/node/scripts/after_script.sh ${TRAVIS_JOB_NUMBER}
+ after_success:
+ - ./platform/node/scripts/after_success.sh
after_failure:
- aws s3 cp . s3://mapbox/mapbox-gl-native/render-tests/$TRAVIS_JOB_NUMBER --recursive --exclude "*" --include "*.trace"
diff --git a/package.json b/package.json
index 30a2fe80a7..a2379bd71f 100644
--- a/package.json
+++ b/package.json
@@ -43,6 +43,6 @@
"module_path": "./lib/",
"host": "https://mapbox-node-binary.s3.amazonaws.com",
"remote_path": "./{name}/v{version}",
- "package_name": "{node_abi}-{platform}-{arch}.tar.gz"
+ "package_name": "{node_abi}-{platform}-{arch}-{configuration}.tar.gz"
}
}
diff --git a/platform/node/scripts/after_success.sh b/platform/node/scripts/after_success.sh
index 95921a42c2..ae34446927 100755
--- a/platform/node/scripts/after_success.sh
+++ b/platform/node/scripts/after_success.sh
@@ -4,10 +4,9 @@ set -e
set -o pipefail
if [[ -n ${PUBLISH:-} ]]; then
- if [[ "${BUILDTYPE}" != "Release" ]]; then
- echo "Please run this script in release mode (BUILDTYPE=Release)."
- exit 1
- else
+ if [[ "${BUILDTYPE}" == "Release" ]]; then
./node_modules/.bin/node-pre-gyp package publish info
+ else
+ ./node_modules/.bin/node-pre-gyp package publish info --debug
fi
fi