mirror of
https://github.com/denoland/deno.git
synced 2024-10-29 08:58:01 -04:00
db65c723ae
Moves 'gn gen' into setup.py Make tools/build.py more ergonomic.
43 lines
1.4 KiB
YAML
43 lines
1.4 KiB
YAML
language: c++
|
|
branches:
|
|
only:
|
|
- master
|
|
cache:
|
|
ccache: true
|
|
directories:
|
|
- $DEPOT_TOOLS_PATH
|
|
- $DENO_BUILD_PATH
|
|
env:
|
|
global:
|
|
# 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
|
|
# Help: How do you wrap long lines here?
|
|
- DENO_BUILD_ARGS="is_debug=false use_allocator=\"none\" use_custom_libcxx=false use_sysroot=false"
|
|
- DENO_BUILD_PATH=$HOME/out/Default
|
|
- DENO_BUILD_MODE=debug
|
|
- 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
|
|
# 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
|
|
- ./tools/setup.py
|
|
- ./tools/build.py
|
|
script:
|
|
- ./tools/lint.py
|
|
- ./tools/test.py $DENO_BUILD_PATH
|