Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add travis_wait to override the 10 minute timeout. #2296

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

@@ -32,8 +32,8 @@ addons:
- libedit-dev
- python
env:
- BUILD_KIND=DEBUG RUST_BACKTRACE=1 RUSTFLAGS='--deny warnings'
- BUILD_KIND=RELEASE RUST_BACKTRACE=1 RUSTFLAGS='--deny warnings'
- BUILD_KIND=DEBUG RUST_BACKTRACE=1 RUSTFLAGS='--deny warnings' RUST_LOG=info
- BUILD_KIND=RELEASE RUST_BACKTRACE=1 RUSTFLAGS='--deny warnings' RUST_LOG=info
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export LLVM_CONFIG=/usr/lib/llvm-3.9/bin/llvm-config; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
@@ -45,10 +45,11 @@ before_install:
- pip install mako servo-tidy
script:
- servo-tidy
- unset -f cd
- if [ $BUILD_KIND = DEBUG ]; then (cd webrender_api && cargo test --verbose --features "ipc"); fi
- if [ $BUILD_KIND = DEBUG ]; then (cd webrender && cargo build --verbose --no-default-features); fi
- if [ $BUILD_KIND = DEBUG ]; then (cd webrender && cargo build --verbose --features profiler,capture); fi
- if [ $BUILD_KIND = DEBUG ]; then (cargo test --all --verbose); fi
- if [ $BUILD_KIND = RELEASE ]; then (cd wrench && python script/headless.py reftest); fi
- if [ $BUILD_KIND = RELEASE ]; then (cd wrench && travis_wait 30 python script/headless.py reftest); fi
- if [ $BUILD_KIND = RELEASE ]; then (cd wrench && cargo build --release); fi
- if [ $TRAVIS_RUST_VERSION == "nightly" ]; then (cd webrender && cargo bench --verbose); fi
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.