# Copyright 2014 The Closure Library Authors. All Rights Reserved. # # Use of this source code is governed by the Apache License, Version 2.0. # See the LICENSE file for details. language: node_js node_js: - "8" sudo: required # This is required for Java 8 in non-java image dist: trusty cache: directories: - node_modules - closure-deps/node_modules install: # We need jdk8 for JsDossier; but this needs to come first because # otherwise there is no java at all. - jdk_switcher use oraclejdk8 - ./scripts/ci/install_closure_deps.sh before_script: - ./scripts/http/simple_http_server.py 2> /dev/null & sleep 5 # Unit tests are disabled (below) #- 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then bash ./scripts/ci/sauce_connect.sh; fi' # Ensure we point to the version of clang-format that we installed in # install_closure_deps.sh. Travis has an older version on the $PATH and # clang-format-diff.py invokes "clang-format" with no option of specifying # a binary path. - export PATH=$PWD/../clang/bin/:$PATH # Make a directory for gh-pages; will be used by both generate_latest_docs.sh # and deploy_latest_docs.sh. - export GH_PAGES=$(mktemp -d) script: - ./scripts/ci/generate_latest_docs.sh - ./scripts/ci/compile_closure.sh - ./scripts/ci/lint_pull_request.sh - ./scripts/ci/check_code_format.sh - ./scripts/ci/test_closuredeps.sh # Disable unit tests # - 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then travis_wait 30 ./scripts/ci/run_all_tests.sh; fi' after_success: - ./scripts/ci/push_latest_docs.sh env: global: - SAUCE_USERNAME=closure-sauce - secure: "LhIlKzzLU9prwCg+p4Ay3bpyeb2drLqrzHHg+xPzNiTA2UUYPW0fYyBtHIjDUgaNRftnlRXhu678iL2U7PEB2ONk4m70TI8Ch0/yBImAklwszxOYgNTljeKV2poYrSBcUandA9kVavzLqdLg8HUlVurURI/dQy4WwwrKUftHudc=" - secure: "aEv7CF6ZvD2Fa67yv6yYtgFGjafCkpSP2Y+Dk2AyJCFLF3+L5ZFXpFoCtgYgCWezVDbeGpoojFeCzLu0ycWwnIwJpUQ/C8NBDR/x2Lqz2I6M2PfkEy91UhSE5nXe1RJMnna1715zeBmustiFKjdETWFZrpvxkHixBHbLfY3cJZw=" addons: apt: packages: # Required for jdk_switcher use oraclejdk8 - oracle-java8-installer