diff --git a/package.json b/package.json index 0e13d328b53..0cf4b0ee3ff 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,7 @@ ], "devDependencies": { "aws-sdk": "^2.2.21", - "mapbox-gl-test-suite": "mapbox/mapbox-gl-test-suite#fc3f2302bfc50ac5c779d4685d3353ee4a388eb1", + "mapbox-gl-test-suite": "mapbox/mapbox-gl-test-suite#1e0d988e187a6c9a7a74fa8d7feb9c66c2258123", "node-gyp": "^3.2.1", "request": "^2.67.0", "tape": "^4.2.2" diff --git a/platform/default/headless_display.cpp b/platform/default/headless_display.cpp index fccc91c7272..8b9f3fe04ba 100644 --- a/platform/default/headless_display.cpp +++ b/platform/default/headless_display.cpp @@ -16,7 +16,6 @@ HeadlessDisplay::HeadlessDisplay() { CGLPixelFormatAttribute attributes[] = { kCGLPFAOpenGLProfile, static_cast(kCGLOGLPVersion_Legacy), - kCGLPFAAccelerated, static_cast(0) }; diff --git a/platform/node/bitrise.yml b/platform/node/bitrise.yml index 134925d6e8d..9b9b4ca0645 100644 --- a/platform/node/bitrise.yml +++ b/platform/node/bitrise.yml @@ -31,18 +31,15 @@ workflows: inputs: - content: |- #!/bin/bash - set -e - set -o pipefail export TRAVIS_OS_NAME=osx export TRAVIS_TAG=$BITRISE_GIT_TAG + export TRAVIS_JOB_NUMBER=$BITRISE_BUILD_NUMBER export NODE_VERSION=4 export CXX=clang++ export CC=clang source ./scripts/set_compiler.sh ./platform/node/scripts/install.sh - if command -v ccache >/dev/null 2>&1; then ccache --zero-stats ; fi ./platform/node/scripts/run.sh - if command -v ccache >/dev/null 2>&1; then ccache --show-stats ; fi ./platform/node/scripts/after_script.sh - slack: title: Post to Slack diff --git a/platform/node/scripts/after_script.sh b/platform/node/scripts/after_script.sh index 8cbfa4d8ff8..ae8480e02a6 100755 --- a/platform/node/scripts/after_script.sh +++ b/platform/node/scripts/after_script.sh @@ -36,15 +36,17 @@ if [[ ${TRAVIS_TAG} == node-v${PACKAGE_JSON_VERSION} ]]; then fi fi -if [[ ${TRAVIS_OS_NAME} == "linux" ]] && [ ! -z "${AWS_ACCESS_KEY_ID}" ] && [ ! -z "${AWS_SECRET_ACCESS_KEY}" ] ; then - # Install and add awscli to PATH for uploading the results - pip install --user awscli - export PATH="`python -m site --user-base`/bin:${PATH}" +if [ ! -z "${AWS_ACCESS_KEY_ID}" ] && [ ! -z "${AWS_SECRET_ACCESS_KEY}" ] ; then + if [[ ${TRAVIS_OS_NAME} == "linux" ]] ; then + pip install --user awscli + export PATH="`python -m site --user-base`/bin:${PATH}" + else + brew install awscli + fi - REPO_NAME=$(basename $TRAVIS_REPO_SLUG) gzip --stdout node_modules/mapbox-gl-test-suite/render-tests/index.html | \ aws s3 cp --acl public-read --content-encoding gzip --content-type text/html \ - - s3://mapbox/$REPO_NAME/render-tests/$TRAVIS_JOB_NUMBER/index.html + - s3://mapbox/mapbox-gl-native/render-tests/$TRAVIS_JOB_NUMBER/index.html - echo http://mapbox.s3.amazonaws.com/$REPO_NAME/render-tests/$TRAVIS_JOB_NUMBER/index.html + echo http://mapbox.s3.amazonaws.com/mapbox-gl-native/render-tests/$TRAVIS_JOB_NUMBER/index.html fi diff --git a/platform/node/scripts/run.sh b/platform/node/scripts/run.sh index fdebaaeb943..73578b110a3 100755 --- a/platform/node/scripts/run.sh +++ b/platform/node/scripts/run.sh @@ -7,20 +7,9 @@ source ./platform/${TRAVIS_OS_NAME}/scripts/setup.sh BUILDTYPE=${BUILDTYPE:-Release} -################################################################################ -# Build -################################################################################ - source ~/.nvm/nvm.sh nvm use $NODE_VERSION npm install --build-from-source -################################################################################ -# Test -################################################################################ - -# https://github.com/mapbox/mapbox-gl-native/issues/2150 -if [[ ${TRAVIS_OS_NAME} == "linux" ]]; then - npm test - npm run test-suite -fi +npm test +npm run test-suite