diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-07-30 05:37:41 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-30 05:37:41 +0200 |
| commit | 3ef6f6d10ddec3da4daa9a769ebd533b98762d07 (patch) | |
| tree | 1f58127d51c58f3192bdb90a80728bfbdd911c00 | |
| parent | cc4a8d7e72881329cc46230ef3520cfdcf116a93 (diff) | |
| parent | 60680d4e98102aede534e6ba2e6057f58074e9a2 (diff) | |
| download | rust-3ef6f6d10ddec3da4daa9a769ebd533b98762d07.tar.gz rust-3ef6f6d10ddec3da4daa9a769ebd533b98762d07.zip | |
Rollup merge of #63106 - alexcrichton:remove-swig-osx, r=pietroalbini
ci: Skip installing SWIG/xz on OSX I'm relatively certain that SWIG was only needed for LLDB which is no longer built, and I'm hoping we can remove the xz install to remove the reliance on `brew` for our build (which is another point of failure for flaky networks).
| -rw-r--r-- | .azure-pipelines/steps/run.yml | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/.azure-pipelines/steps/run.yml b/.azure-pipelines/steps/run.yml index 1e49cc00921..ca32888b74c 100644 --- a/.azure-pipelines/steps/run.yml +++ b/.azure-pipelines/steps/run.yml @@ -62,17 +62,6 @@ steps: - template: install-sccache.yml - template: install-clang.yml -# Install some dependencies needed to build LLDB/Clang, currently only needed -# during the `dist` target -- bash: | - set -e - brew update - brew install xz - brew install swig@3 - brew link --force swig@3 - displayName: Install build dependencies (OSX) - condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin'), eq(variables['SCRIPT'],'./x.py dist')) - # Switch to XCode 9.3 on OSX since it seems to be the last version that supports # i686-apple-darwin. We'll eventually want to upgrade this and it will probably # force us to drop i686-apple-darwin, but let's keep the wheels turning for now. |
