diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2019-05-20 11:27:18 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2019-05-20 11:27:18 -0700 |
| commit | 79d28c203fbf46739d2e3f1f2f3e62bdf1ac5563 (patch) | |
| tree | dd3064afa819be86ca8a056b7c70da88afdc6f3a | |
| parent | 9f37b3a4c251d7caaa2870952e217be369e8e9c1 (diff) | |
| download | rust-79d28c203fbf46739d2e3f1f2f3e62bdf1ac5563.tar.gz rust-79d28c203fbf46739d2e3f1f2f3e62bdf1ac5563.zip | |
Don't bother with `stamp` utility
That was just used because Travis doesn't have time stamps on all log lines, but Azure does, so no need to add our own.
| -rw-r--r-- | .azure-pipelines/steps/linux.yml | 3 | ||||
| -rw-r--r-- | .azure-pipelines/steps/macos.yml | 3 | ||||
| -rw-r--r-- | .azure-pipelines/steps/run-script.yml | 2 |
3 files changed, 1 insertions, 7 deletions
diff --git a/.azure-pipelines/steps/linux.yml b/.azure-pipelines/steps/linux.yml index 36f980cf992..70327de92e8 100644 --- a/.azure-pipelines/steps/linux.yml +++ b/.azure-pipelines/steps/linux.yml @@ -8,9 +8,6 @@ steps: - bash: | sudo apt install gdb - curl -fo $HOME/stamp https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror/2017-03-17-stamp-x86_64-unknown-linux-musl - chmod +x $HOME/stamp - export PATH=$PATH:$HOME/.local/bin:$HOME/Library/Python/2.7/bin/:$HOME echo "##vso[task.prependpath]$HOME/.local/bin" echo "##vso[task.prependpath]$HOME/Library/Python/2.7/bin" diff --git a/.azure-pipelines/steps/macos.yml b/.azure-pipelines/steps/macos.yml index d1adc340392..5976f31502f 100644 --- a/.azure-pipelines/steps/macos.yml +++ b/.azure-pipelines/steps/macos.yml @@ -9,9 +9,6 @@ steps: curl -fo /usr/local/bin/sccache https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror/2018-04-02-sccache-x86_64-apple-darwin chmod +x /usr/local/bin/sccache - curl -fo /usr/local/bin/stamp https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror/2017-03-17-stamp-x86_64-apple-darwin - chmod +x /usr/local/bin/stamp - export CC=`pwd`/clang+llvm-7.0.0-x86_64-apple-darwin/bin/clang echo "##vso[task.setvariable variable=CC]$CC" diff --git a/.azure-pipelines/steps/run-script.yml b/.azure-pipelines/steps/run-script.yml index bf18518e6b1..0e6af4d6d12 100644 --- a/.azure-pipelines/steps/run-script.yml +++ b/.azure-pipelines/steps/run-script.yml @@ -6,7 +6,7 @@ steps: date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true) which sccache - stamp sh -x -c "$RUN_SCRIPT" + "$RUN_SCRIPT" date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true) env: |
