From f41377f10de13c7ea9bd34ec46e543e4d2f253cf Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Sun, 20 May 2018 18:36:44 -0700 Subject: [PATCH 1/2] Increase max run time to 2 hours Based on the Taskcluster log for (https://taskcluster-artifacts.net/HkxDh1oKQceXH1fL9RSGow/0/public/logs/live_backing.log), it looks like the job is running successfully but hitting the max time limit. Our builds + tests shouldn't take this long to run normally, but we'll need to set up sccache with cache uploading/downloading in order to improve most build times. For now, bump the max run time to 2 hours; since we complete one build + som tests within an hour, 2 hours should be enough for the second build to finish as well. --- .taskcluster.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 6861f9bdcfa2a20998d31ccd99c1f0e1a4a084a4 Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Sun, 20 May 2018 18:40:24 -0700 Subject: [PATCH 2/2] Make it easier to debug Taskcluster runs Print out each command before it is run, to help debug future Taskcluster issues. --- etc/ci/taskcluster-test.sh | 2 ++ 1 file changed, 2 insertions(+) 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}"