mirror of
https://github.com/denoland/deno.git
synced 2024-11-26 16:09:27 -05:00
0875411267
To allow better tab completion for ./tools/build.py mv build_third_party.py sync_third_party.py
43 lines
1.5 KiB
YAML
43 lines
1.5 KiB
YAML
language: c++
|
|
branches:
|
|
only:
|
|
- master
|
|
cache:
|
|
ccache: true
|
|
directories:
|
|
- $DEPOT_TOOLS_PATH
|
|
- $BUILD_PATH
|
|
env:
|
|
global:
|
|
- BUILD_PATH=$HOME/out/Default
|
|
- DEPOT_TOOLS_PATH=$HOME/depot_tools
|
|
before_install: |
|
|
if ! [ -x $DEPOT_TOOLS_PATH/gclient ]; then
|
|
rm -rf $DEPOT_TOOLS_PATH
|
|
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git $DEPOT_TOOLS_PATH
|
|
fi
|
|
install:
|
|
- export PATH=$PATH:$DEPOT_TOOLS_PATH
|
|
# Sync dependencies.
|
|
# TODO(ry) These sync steps are very terrible and only here temporarily.
|
|
# rustc should be added to deno_third_party. Ultimately Deno *should not*
|
|
# depend on yarn, gclient, rustup, cargo, nor any internet connection.
|
|
- curl -sSf https://sh.rustup.rs | sh -s -- -y
|
|
- export PATH=$HOME/.cargo/bin:$PATH
|
|
- rustc --version
|
|
# TODO(ry) Do not depend on run_hooks because it calls
|
|
# //third_party/depot_tools/download_from_google_storage.py
|
|
# Use git lfs and combine run_hooks with sync_third_party?
|
|
- ./tools/run_hooks.py
|
|
# ccache needs the custom LLVM to be in PATH and other variables.
|
|
- export PATH=`pwd`/third_party/llvm-build/Release+Asserts/bin:$PATH
|
|
- export CCACHE_CPP2=yes
|
|
- export CCACHE_SLOPPINESS=time_macros
|
|
- ccache -s
|
|
# is_debug, use_allocator, and ccache are used to speed travis.
|
|
# use_custom_libcxx=false and use_sysroot=false seem to be required to build on
|
|
# Ubuntu 14.04
|
|
- ./tools/build.py --build_path=$BUILD_PATH --args='is_debug=false use_allocator="none" use_custom_libcxx=false use_sysroot=false'
|
|
script:
|
|
- ./tools/lint.py
|
|
- ./tools/test.py $BUILD_PATH
|