diff options
-rw-r--r-- | .taskcluster.yml | 2 | ||||
-rwxr-xr-x | etc/ci/taskcluster-test.sh | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/.taskcluster.yml b/.taskcluster.yml index f2b8afeef2f..38aa11b9482 100644 --- a/.taskcluster.yml +++ b/.taskcluster.yml @@ -16,7 +16,7 @@ tasks: - pull_request.reopened - pull_request.synchronize payload: - maxRunTime: 3600 + maxRunTime: 7200 image: 'servobrowser/servo-linux-dev:servo-linux-build-deps-2017-06-30' command: - /bin/bash diff --git a/etc/ci/taskcluster-test.sh b/etc/ci/taskcluster-test.sh index 95418f7b9f6..65a4acf986c 100755 --- a/etc/ci/taskcluster-test.sh +++ b/etc/ci/taskcluster-test.sh @@ -8,6 +8,8 @@ set -o errexit set -o nounset set -o pipefail +set -x + curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain none -y export PATH="${HOME}/.cargo/bin:${PATH}" |