Refactor azure pipelines configuration
This commit is intended to go through and review/refactor the azure pipelines configuration we have. The major changes are: * The separate `{windows,macos,linux}.yml` files are now all merged into one `run.yml`. This allows a shared "master flow" for all platforms with divergence only where necessary. * Some install steps have been separated as `install-*.yml` scripts, where each script internally matches on the appropriate OS and then delegates accordingly. * Some various bits and pieces of cruft have been removed which were artifacts of Travis's setup or similar.
This commit is contained in:
parent
79d28c203f
commit
1be9fe6a44
@ -11,11 +11,10 @@ variables:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
- job: Linux
|
- job: Linux
|
||||||
timeoutInMinutes: 180
|
|
||||||
pool:
|
pool:
|
||||||
vmImage: ubuntu-16.04
|
vmImage: ubuntu-16.04
|
||||||
steps:
|
steps:
|
||||||
- template: steps/linux.yml
|
- template: steps/run.yml
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
x86_64-gnu-llvm-6.0:
|
x86_64-gnu-llvm-6.0:
|
||||||
@ -151,13 +150,12 @@ jobs:
|
|||||||
IMAGE: mingw-check
|
IMAGE: mingw-check
|
||||||
|
|
||||||
- job: macOS
|
- job: macOS
|
||||||
timeoutInMinutes: 180
|
|
||||||
pool:
|
pool:
|
||||||
vmImage: macos-10.13
|
vmImage: macos-10.13
|
||||||
steps:
|
steps:
|
||||||
- checkout: self
|
- checkout: self
|
||||||
fetchDepth: 2
|
fetchDepth: 2
|
||||||
- template: steps/macos.yml
|
- template: steps/run.yml
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
# OSX builders running tests, these run the full test suite.
|
# OSX builders running tests, these run the full test suite.
|
||||||
@ -216,11 +214,10 @@ jobs:
|
|||||||
|
|
||||||
|
|
||||||
- job: Windows
|
- job: Windows
|
||||||
timeoutInMinutes: 180
|
|
||||||
pool:
|
pool:
|
||||||
vmImage: 'vs2017-win2016'
|
vmImage: 'vs2017-win2016'
|
||||||
steps:
|
steps:
|
||||||
- template: steps/windows.yml
|
- template: steps/run.yml
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
# # 32/64 bit MSVC tests
|
# # 32/64 bit MSVC tests
|
||||||
|
@ -8,11 +8,10 @@ pr:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
- job: Linux
|
- job: Linux
|
||||||
timeoutInMinutes: 180
|
|
||||||
pool:
|
pool:
|
||||||
vmImage: ubuntu-16.04
|
vmImage: ubuntu-16.04
|
||||||
steps:
|
steps:
|
||||||
- template: steps/linux.yml
|
- template: steps/run.yml
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
x86_64-gnu-llvm-6.0:
|
x86_64-gnu-llvm-6.0:
|
||||||
|
40
.azure-pipelines/steps/install-clang.yml
Normal file
40
.azure-pipelines/steps/install-clang.yml
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
steps:
|
||||||
|
|
||||||
|
- bash: |
|
||||||
|
set -e
|
||||||
|
curl -f http://releases.llvm.org/7.0.0/clang+llvm-7.0.0-x86_64-apple-darwin.tar.xz | tar xJf -
|
||||||
|
|
||||||
|
export CC=`pwd`/clang+llvm-7.0.0-x86_64-apple-darwin/bin/clang
|
||||||
|
echo "##vso[task.setvariable variable=CC]$CC"
|
||||||
|
|
||||||
|
export CXX=`pwd`/clang+llvm-7.0.0-x86_64-apple-darwin/bin/clang++
|
||||||
|
echo "##vso[task.setvariable variable=CXX]$CXX"
|
||||||
|
|
||||||
|
# Configure `AR` specifically so rustbuild doesn't try to infer it as
|
||||||
|
# `clang-ar` by accident.
|
||||||
|
echo "##vso[task.setvariable variable=AR]ar"
|
||||||
|
displayName: Install clang (OSX)
|
||||||
|
condition: eq(variables['Agent.OS'], 'Darwin')
|
||||||
|
|
||||||
|
# If we're compiling for MSVC then we, like most other distribution builders,
|
||||||
|
# switch to clang as the compiler. This'll allow us eventually to enable LTO
|
||||||
|
# amongst LLVM and rustc. Note that we only do this on MSVC as I don't think
|
||||||
|
# clang has an output mode compatible with MinGW that we need. If it does we
|
||||||
|
# should switch to clang for MinGW as well!
|
||||||
|
#
|
||||||
|
# Note that the LLVM installer is an NSIS installer
|
||||||
|
#
|
||||||
|
# Original downloaded here came from
|
||||||
|
# http://releases.llvm.org/7.0.0/LLVM-7.0.0-win64.exe
|
||||||
|
- script: |
|
||||||
|
powershell -Command "iwr -outf %TEMP%\LLVM-7.0.0-win64.exe https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror/LLVM-7.0.0-win64.exe"
|
||||||
|
set CLANG_DIR=%CD%\citools\clang-rust
|
||||||
|
%TEMP%\LLVM-7.0.0-win64.exe /S /NCRC /D=%CLANG_DIR%
|
||||||
|
set RUST_CONFIGURE_ARGS=%RUST_CONFIGURE_ARGS% --set llvm.clang-cl=%CLANG_DIR%\bin\clang-cl.exe
|
||||||
|
echo ##vso[task.setvariable variable=RUST_CONFIGURE_ARGS]%RUST_CONFIGURE_ARGS%
|
||||||
|
condition: and(eq(variables['Agent.OS'], 'Darwin'), eq(variables['MINGW_URL'],''))
|
||||||
|
displayName: Install clang (Windows)
|
||||||
|
|
||||||
|
# Note that we don't install clang on Linux since its compiler story is just so
|
||||||
|
# different. Each container has its own toolchain configured appropriately
|
||||||
|
# already.
|
21
.azure-pipelines/steps/install-sccache.yml
Normal file
21
.azure-pipelines/steps/install-sccache.yml
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
steps:
|
||||||
|
|
||||||
|
- bash: |
|
||||||
|
set -e
|
||||||
|
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
|
||||||
|
displayName: Install sccache (OSX)
|
||||||
|
condition: eq(variables['Agent.OS'], 'Darwin')
|
||||||
|
|
||||||
|
- script: |
|
||||||
|
md sccache
|
||||||
|
powershell -Command "iwr -outf sccache\sccache.exe https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror/2018-04-26-sccache-x86_64-pc-windows-msvc"
|
||||||
|
echo ##vso[task.prependpath]%CD%\sccache
|
||||||
|
displayName: Install sccache (Windows)
|
||||||
|
condition: eq(variables['Agent.OS'], 'Windows_NT')
|
||||||
|
|
||||||
|
# Note that we don't install sccache on Linux since it's installed elsewhere
|
||||||
|
# through all the containers.
|
||||||
|
#
|
||||||
|
# FIXME: we should probably install sccache outside the containers and then
|
||||||
|
# mount it inside the containers so we can centralize all installation here.
|
@ -1,19 +1,17 @@
|
|||||||
steps:
|
steps:
|
||||||
- checkout: self
|
# FIXME: are these still needed?
|
||||||
fetchDepth: 2
|
# - bash: |
|
||||||
|
# set -x
|
||||||
- bash: |
|
# git submodule
|
||||||
set -x
|
# export SUBMODULES_EXCLUDES=$(git submodule | grep -Eow 'src/[^ ]+' | sed 's/\(.*\)/--exclude=\1\/\.git/')
|
||||||
git submodule
|
# echo "##vso[task.setvariable variable=SUBMODULES_EXCLUDES;]$SUBMODULES_EXCLUDES"
|
||||||
export SUBMODULES_EXCLUDES=$(git submodule | grep -Eow 'src/[^ ]+' | sed 's/\(.*\)/--exclude=\1\/\.git/')
|
#
|
||||||
echo "##vso[task.setvariable variable=SUBMODULES_EXCLUDES;]$SUBMODULES_EXCLUDES"
|
# - script: |
|
||||||
|
# REM echo hack as drive D is too small
|
||||||
- script: |
|
# IF NOT "%DISABLE_DISK_SPACE_HACK%"=="1" (
|
||||||
REM echo hack as drive D is too small
|
# mkdir c:\MORE_SPACE
|
||||||
IF NOT "%DISABLE_DISK_SPACE_HACK%"=="1" (
|
# mklink /J build c:\MORE_SPACE
|
||||||
mkdir c:\MORE_SPACE
|
# )
|
||||||
mklink /J build c:\MORE_SPACE
|
|
||||||
)
|
|
||||||
|
|
||||||
- script: |
|
- script: |
|
||||||
set MSYS_PATH=%CD%\citools\msys64
|
set MSYS_PATH=%CD%\citools\msys64
|
||||||
@ -31,6 +29,7 @@ steps:
|
|||||||
echo ##vso[task.setvariable variable=MSYS_PATH]%MSYS_PATH%
|
echo ##vso[task.setvariable variable=MSYS_PATH]%MSYS_PATH%
|
||||||
echo ##vso[task.prependpath]%MSYS_PATH%\usr\bin
|
echo ##vso[task.prependpath]%MSYS_PATH%\usr\bin
|
||||||
displayName: Install msys2
|
displayName: Install msys2
|
||||||
|
condition: eq(variables['Agent.OS'], 'Windows_NT')
|
||||||
|
|
||||||
# If we need to download a custom MinGW, do so here and set the path
|
# If we need to download a custom MinGW, do so here and set the path
|
||||||
# appropriately.
|
# appropriately.
|
||||||
@ -44,28 +43,9 @@ steps:
|
|||||||
powershell -Command "iwr -outf %MINGW_ARCHIVE% %MINGW_URL%/%MINGW_ARCHIVE%"
|
powershell -Command "iwr -outf %MINGW_ARCHIVE% %MINGW_URL%/%MINGW_ARCHIVE%"
|
||||||
7z x -y %MINGW_ARCHIVE% > nul
|
7z x -y %MINGW_ARCHIVE% > nul
|
||||||
echo ##vso[task.prependpath]%CD%\%MINGW_DIR%\bin
|
echo ##vso[task.prependpath]%CD%\%MINGW_DIR%\bin
|
||||||
condition: and(succeeded(), ne(variables['MINGW_URL'],''))
|
condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT'), ne(variables['MINGW_URL'],''))
|
||||||
displayName: Download custom MinGW
|
displayName: Download custom MinGW
|
||||||
|
|
||||||
# If we're compiling for MSVC then we, like most other distribution builders,
|
|
||||||
# switch to clang as the compiler. This'll allow us eventually to enable LTO
|
|
||||||
# amongst LLVM and rustc. Note that we only do this on MSVC as I don't think
|
|
||||||
# clang has an output mode compatible with MinGW that we need. If it does we
|
|
||||||
# should switch to clang for MinGW as well!
|
|
||||||
#
|
|
||||||
# Note that the LLVM installer is an NSIS installer
|
|
||||||
#
|
|
||||||
# Original downloaded here came from
|
|
||||||
# http://releases.llvm.org/7.0.0/LLVM-7.0.0-win64.exe
|
|
||||||
- script: |
|
|
||||||
powershell -Command "iwr -outf %TEMP%\LLVM-7.0.0-win64.exe https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror/LLVM-7.0.0-win64.exe"
|
|
||||||
set CLANG_DIR=%CD%\citools\clang-rust
|
|
||||||
%TEMP%\LLVM-7.0.0-win64.exe /S /NCRC /D=%CLANG_DIR%
|
|
||||||
set RUST_CONFIGURE_ARGS=%RUST_CONFIGURE_ARGS% --set llvm.clang-cl=%CLANG_DIR%\bin\clang-cl.exe
|
|
||||||
echo ##vso[task.setvariable variable=RUST_CONFIGURE_ARGS]%RUST_CONFIGURE_ARGS%
|
|
||||||
condition: and(succeeded(), eq(variables['MINGW_URL'],''))
|
|
||||||
displayName: Download clang
|
|
||||||
|
|
||||||
# Here we do a pretty heinous thing which is to mangle the MinGW installation
|
# Here we do a pretty heinous thing which is to mangle the MinGW installation
|
||||||
# we just had above. Currently, as of this writing, we're using MinGW-w64
|
# we just had above. Currently, as of this writing, we're using MinGW-w64
|
||||||
# builds of gcc, and that's currently at 6.3.0. We use 6.3.0 as it appears to
|
# builds of gcc, and that's currently at 6.3.0. We use 6.3.0 as it appears to
|
||||||
@ -87,28 +67,20 @@ steps:
|
|||||||
echo ON
|
echo ON
|
||||||
powershell -Command "iwr -outf 2017-04-20-%MSYS_BITS%bit-gdborig.exe %MINGW_URL%/2017-04-20-%MSYS_BITS%bit-gdborig.exe"
|
powershell -Command "iwr -outf 2017-04-20-%MSYS_BITS%bit-gdborig.exe %MINGW_URL%/2017-04-20-%MSYS_BITS%bit-gdborig.exe"
|
||||||
mv 2017-04-20-%MSYS_BITS%bit-gdborig.exe %MINGW_DIR%\bin\gdborig.exe
|
mv 2017-04-20-%MSYS_BITS%bit-gdborig.exe %MINGW_DIR%\bin\gdborig.exe
|
||||||
condition: and(succeeded(), ne(variables['MINGW_URL'],''))
|
condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT'), ne(variables['MINGW_URL'],''))
|
||||||
displayName: Override with 6.3.0 gdb with 6.2.0 gdb
|
displayName: Override with 6.3.0 gdb with 6.2.0 gdb
|
||||||
|
|
||||||
# Otherwise pull in the MinGW installed on appveyor
|
# Otherwise pull in the MinGW installed on appveyor
|
||||||
- script: |
|
- script: |
|
||||||
echo Find mingw
|
|
||||||
set PATH | findstr /i msys
|
|
||||||
set PATH | findstr /i mingw
|
|
||||||
echo ##vso[task.prependpath]%MSYS_PATH%\mingw%MSYS_BITS%\bin
|
echo ##vso[task.prependpath]%MSYS_PATH%\mingw%MSYS_BITS%\bin
|
||||||
condition: and(succeeded(), eq(variables['MINGW_URL'],''))
|
condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT'), eq(variables['MINGW_URL'],''))
|
||||||
displayName: Add MinGW to path
|
displayName: Add MinGW to path
|
||||||
|
|
||||||
- script: |
|
- script: |
|
||||||
copy C:\Python27amd64\python.exe C:\Python27amd64\python2.7.exe
|
copy C:\Python27amd64\python.exe C:\Python27amd64\python2.7.exe
|
||||||
echo ##vso[task.prependpath]C:\Python27amd64
|
echo ##vso[task.prependpath]C:\Python27amd64
|
||||||
displayName: Prefer the "native" Python as LLVM has trouble building with MSYS sometimes
|
displayName: Prefer the "native" Python as LLVM has trouble building with MSYS sometimes
|
||||||
|
condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT'))
|
||||||
- script: |
|
|
||||||
md sccache
|
|
||||||
powershell -Command "iwr -outf sccache\sccache.exe https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror/2018-04-26-sccache-x86_64-pc-windows-msvc"
|
|
||||||
echo ##vso[task.prependpath]%CD%\sccache
|
|
||||||
displayName: Download and install sccache
|
|
||||||
|
|
||||||
# Note that this is originally from the github releases patch of Ninja
|
# Note that this is originally from the github releases patch of Ninja
|
||||||
- script: |
|
- script: |
|
||||||
@ -120,41 +92,4 @@ steps:
|
|||||||
echo ##vso[task.setvariable variable=RUST_CONFIGURE_ARGS]%RUST_CONFIGURE_ARGS%
|
echo ##vso[task.setvariable variable=RUST_CONFIGURE_ARGS]%RUST_CONFIGURE_ARGS%
|
||||||
echo ##vso[task.prependpath]%CD%\ninja
|
echo ##vso[task.prependpath]%CD%\ninja
|
||||||
displayName: Download and install ninja
|
displayName: Download and install ninja
|
||||||
|
condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT'))
|
||||||
- script: |
|
|
||||||
mkdir handle
|
|
||||||
powershell -Command "iwr -outf 2017-05-15-Handle.zip https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror/2017-05-15-Handle.zip"
|
|
||||||
7z x -ohandle 2017-05-15-Handle.zip
|
|
||||||
del 2017-05-15-Handle.zip
|
|
||||||
set PATH=%PATH%;%CD%\handle
|
|
||||||
handle.exe -accepteula -help
|
|
||||||
echo ##vso[task.setvariable variable=PATH]%PATH%
|
|
||||||
displayName: Help debug handle issues
|
|
||||||
|
|
||||||
- template: show-environment-variables.yml
|
|
||||||
|
|
||||||
- script: |
|
|
||||||
REM echo force the specific VS version
|
|
||||||
IF "%VCVARS_BAT%" NEQ "" (
|
|
||||||
CALL "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\%VCVARS_BAT%"
|
|
||||||
)
|
|
||||||
|
|
||||||
where sccache
|
|
||||||
where rev
|
|
||||||
set | findstr /v SCCACHE_AZURE_CONNECTION_STRING
|
|
||||||
|
|
||||||
if not exist D:\cache\rustsrc\NUL mkdir D:\cache\rustsrc
|
|
||||||
|
|
||||||
sh src/ci/init_repo.sh . /d/cache/rustsrc
|
|
||||||
sh src/ci/run.sh
|
|
||||||
env:
|
|
||||||
CI: true
|
|
||||||
CI_JOB_NAME: $(System.JobDisplayName)
|
|
||||||
SRC: .
|
|
||||||
NO_CCACHE: 1
|
|
||||||
|
|
||||||
# explicitly decrypt secret variables
|
|
||||||
# see https://docs.microsoft.com/en-us/azure/devops/pipelines/process/variables?view=azure-devops&tabs=yaml%2Cbatch
|
|
||||||
AWS_ACCESS_KEY_ID: $(SCCACHE_AWS_ACCESS_KEY_ID)
|
|
||||||
AWS_SECRET_ACCESS_KEY: $(SCCACHE_AWS_SECRET_ACCESS_KEY)
|
|
||||||
displayName: Run script
|
|
@ -1,32 +0,0 @@
|
|||||||
steps:
|
|
||||||
- checkout: self
|
|
||||||
fetchDepth: 2
|
|
||||||
|
|
||||||
- template: show-environment-variables.yml
|
|
||||||
- template: show-disk-usage.yml
|
|
||||||
|
|
||||||
- bash: |
|
|
||||||
sudo apt install gdb
|
|
||||||
|
|
||||||
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"
|
|
||||||
echo "##vso[task.prependpath]$HOME"
|
|
||||||
|
|
||||||
mkdir -p $HOME/rustsrc
|
|
||||||
displayName: Prep
|
|
||||||
|
|
||||||
- bash: |
|
|
||||||
export RUN_SCRIPT="$BUILD_SOURCESDIRECTORY/src/ci/init_repo.sh . $HOME/rustsrc && src/ci/docker/run.sh $IMAGE"
|
|
||||||
echo "##vso[task.setvariable variable=IMAGE]$IMAGE"
|
|
||||||
echo "##vso[task.setvariable variable=RUN_SCRIPT]$RUN_SCRIPT"
|
|
||||||
displayName: Prepare run script
|
|
||||||
|
|
||||||
- template: show-environment-variables.yml
|
|
||||||
|
|
||||||
- bash: sudo sh -c 'echo "/checkout/obj/cores/core.%p.%E" > /proc/sys/kernel/core_pattern'
|
|
||||||
displayName: Enable core dump
|
|
||||||
|
|
||||||
- template: verify-publish-toolstate.yml
|
|
||||||
|
|
||||||
- template: run-script.yml
|
|
@ -1,44 +0,0 @@
|
|||||||
steps:
|
|
||||||
- template: show-disk-usage.yml
|
|
||||||
|
|
||||||
- bash: |
|
|
||||||
export PATH=$PATH:$HOME/.local/bin:$HOME/Library/Python/2.7/bin/
|
|
||||||
mkdir -p $HOME/rustsrc
|
|
||||||
echo "##vso[task.setvariable variable=PATH;]$PATH"
|
|
||||||
|
|
||||||
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
|
|
||||||
|
|
||||||
export CC=`pwd`/clang+llvm-7.0.0-x86_64-apple-darwin/bin/clang
|
|
||||||
echo "##vso[task.setvariable variable=CC]$CC"
|
|
||||||
|
|
||||||
export CXX=`pwd`/clang+llvm-7.0.0-x86_64-apple-darwin/bin/clang++
|
|
||||||
echo "##vso[task.setvariable variable=CXX]$CXX"
|
|
||||||
|
|
||||||
echo "##vso[task.setvariable variable=AR]ar"
|
|
||||||
displayName: Prep
|
|
||||||
|
|
||||||
- bash: brew install gnu-tar
|
|
||||||
displayName: install a tar that works well
|
|
||||||
|
|
||||||
- bash: |
|
|
||||||
curl -f http://releases.llvm.org/7.0.0/clang+llvm-7.0.0-x86_64-apple-darwin.tar.xz | tar xJf -
|
|
||||||
displayName: Download clang
|
|
||||||
|
|
||||||
- bash: |
|
|
||||||
brew update
|
|
||||||
brew install xz
|
|
||||||
brew install swig
|
|
||||||
condition: and(succeeded(), eq(variables['RUST_CHECK_TARGET'],'dist'))
|
|
||||||
displayName: Install xz and swigw
|
|
||||||
|
|
||||||
- bash: |
|
|
||||||
export RUN_SCRIPT="$BUILD_SOURCESDIRECTORY/src/ci/init_repo.sh . $HOME/rustsrc && src/ci/run.sh"
|
|
||||||
echo "##vso[task.setvariable variable=RUN_SCRIPT]$RUN_SCRIPT"
|
|
||||||
displayName: Prepare run script (init and run)
|
|
||||||
|
|
||||||
- template: show-environment-variables.yml
|
|
||||||
|
|
||||||
- template: verify-publish-toolstate.yml
|
|
||||||
|
|
||||||
- template: run-script.yml
|
|
@ -1,35 +0,0 @@
|
|||||||
steps:
|
|
||||||
|
|
||||||
- bash: |
|
|
||||||
# Log time information from this machine and an external machine for insight into possible
|
|
||||||
# clock drift. Timezones don't matter since relative deltas give all the necessary info.
|
|
||||||
date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true)
|
|
||||||
|
|
||||||
which sccache
|
|
||||||
"$RUN_SCRIPT"
|
|
||||||
|
|
||||||
date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true)
|
|
||||||
env:
|
|
||||||
CI: true
|
|
||||||
CI_JOB_NAME: $(IMAGE)
|
|
||||||
SRC: .
|
|
||||||
|
|
||||||
# Explicitly decrypt secret variables
|
|
||||||
# See https://docs.microsoft.com/azure/devops/pipelines/process/variables?view=azure-devops&tabs=yaml%2Cbatch#secret-variables
|
|
||||||
AWS_ACCESS_KEY_ID: $(SCCACHE_AWS_ACCESS_KEY_ID)
|
|
||||||
AWS_SECRET_ACCESS_KEY: $(SCCACHE_AWS_SECRET_ACCESS_KEY)
|
|
||||||
displayName: Run script
|
|
||||||
|
|
||||||
- bash: |
|
|
||||||
deploy_dir=rustc-builds
|
|
||||||
if [ "$DEPLOY_ALT" == "1" ]; then
|
|
||||||
deploy_dir=rustc-builds-alt
|
|
||||||
fi
|
|
||||||
aws s3 cp --no-progress --recursive --acl public-read ./deploy s3://$DEPLOY_BUCKET/$deploy_dir
|
|
||||||
env:
|
|
||||||
# Explicitly decrypt secret variables
|
|
||||||
# See https://docs.microsoft.com/azure/devops/pipelines/process/variables?view=azure-devops&tabs=yaml%2Cbatch#secret-variables
|
|
||||||
AWS_ACCESS_KEY_ID: $(SCCACHE_AWS_ACCESS_KEY_ID)
|
|
||||||
AWS_SECRET_ACCESS_KEY: $(SCCACHE_AWS_SECRET_ACCESS_KEY)
|
|
||||||
condition: and(succeeded(), or(eq(variables.DEPLOY, '1'), eq(variables.DEPLOY_ALT, '1')))
|
|
||||||
displayName: Upload artifacts
|
|
89
.azure-pipelines/steps/run.yml
Normal file
89
.azure-pipelines/steps/run.yml
Normal file
@ -0,0 +1,89 @@
|
|||||||
|
# FIXME(linux): need to configure core dumps, enable them, and then dump
|
||||||
|
# backtraces on failure from all core dumps:
|
||||||
|
#
|
||||||
|
# - bash: sudo apt install gdb
|
||||||
|
# - bash: sudo sh -c 'echo "/checkout/obj/cores/core.%p.%E" > /proc/sys/kernel/core_pattern'
|
||||||
|
#
|
||||||
|
# Check travis config for `gdb --batch` command to print all crash logs
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- checkout: self
|
||||||
|
fetchDepth: 2
|
||||||
|
|
||||||
|
- bash: printenv | sort
|
||||||
|
displayName: Show environment variables
|
||||||
|
|
||||||
|
- bash: |
|
||||||
|
set -e
|
||||||
|
df -h
|
||||||
|
du . | sort -nr | head -n100
|
||||||
|
displayName: Show disk usage
|
||||||
|
# FIXME: this hasn't been tested, but maybe it works on Windows? Should test!
|
||||||
|
condition: ne(variables['Agent.OS'], 'Windows_NT')
|
||||||
|
|
||||||
|
- 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
|
||||||
|
displayName: Install build dependencies (OSX)
|
||||||
|
condition: and(eq(variables['Agent.OS'], 'Darwin'), eq(variables['RUST_CHECK_TARGET'],'dist'))
|
||||||
|
|
||||||
|
- template: install-windows-build-deps.yml
|
||||||
|
|
||||||
|
# Check out all our submodules, but more quickly than using git by using one of
|
||||||
|
# our custom scripts
|
||||||
|
- bash: |
|
||||||
|
set -e
|
||||||
|
mkdir -p $HOME/rustsrc
|
||||||
|
$BUILD_SOURCESDIRECTORY/src/ci/init_repo.sh . $HOME/rustsrc
|
||||||
|
condition: ne(variables['Agent.OS'], 'Windows_NT')
|
||||||
|
displayName: Check out submodules (Unix)
|
||||||
|
- script: |
|
||||||
|
if not exist D:\cache\rustsrc\NUL mkdir D:\cache\rustsrc
|
||||||
|
sh src/ci/init_repo.sh . /d/cache/rustsrc
|
||||||
|
condition: eq(variables['Agent.OS'], 'Windows_NT')
|
||||||
|
displayName: Check out submodules (Windows)
|
||||||
|
|
||||||
|
# Configure our CI_JOB_NAME variable which log analyzers can use for the main
|
||||||
|
# step to see what's going on.
|
||||||
|
- bash: echo "##vso[task.setvariable variable=CI_JOB_NAME]$SYSTEM_JOBNAME"
|
||||||
|
condition: eq(variables['Agent.OS'], 'Windows_NT')
|
||||||
|
displayName: Configure Job Name (Windows)
|
||||||
|
|
||||||
|
# As a quick smoke check on the otherwise very fast mingw-check linux builder
|
||||||
|
# check our own internal scripts.
|
||||||
|
- bash: |
|
||||||
|
set -e
|
||||||
|
git clone --depth=1 https://github.com/rust-lang-nursery/rust-toolstate.git
|
||||||
|
cd rust-toolstate
|
||||||
|
python2.7 "$BUILD_SOURCESDIRECTORY/src/tools/publish_toolstate.py" "$(git rev-parse HEAD)" "$(git log --format=%s -n1 HEAD)" "" ""
|
||||||
|
cd ..
|
||||||
|
rm -rf rust-toolstate
|
||||||
|
condition: and(succeeded(), eq(variables['IMAGE'], 'mingw-check'))
|
||||||
|
displayName: Verify the publish_toolstate script works
|
||||||
|
|
||||||
|
- script: sh src/ci/run.sh
|
||||||
|
timeoutInMinutes: 180
|
||||||
|
env:
|
||||||
|
CI: true
|
||||||
|
SRC: .
|
||||||
|
AWS_SECRET_ACCESS_KEY: $(SCCACHE_AWS_SECRET_ACCESS_KEY)
|
||||||
|
displayName: Run build
|
||||||
|
|
||||||
|
- bash: |
|
||||||
|
set -e
|
||||||
|
deploy_dir=rustc-builds
|
||||||
|
if [ "$DEPLOY_ALT" == "1" ]; then
|
||||||
|
deploy_dir=rustc-builds-alt
|
||||||
|
fi
|
||||||
|
aws s3 cp --no-progress --recursive --acl public-read ./deploy s3://$DEPLOY_BUCKET/$deploy_dir
|
||||||
|
env:
|
||||||
|
AWS_SECRET_ACCESS_KEY: $(SCCACHE_AWS_SECRET_ACCESS_KEY)
|
||||||
|
condition: and(succeeded(), or(eq(variables.DEPLOY, '1'), eq(variables.DEPLOY_ALT, '1')))
|
||||||
|
displayName: Upload artifacts
|
@ -1,5 +0,0 @@
|
|||||||
steps:
|
|
||||||
- bash: |
|
|
||||||
df -h
|
|
||||||
du . | sort -nr | head -n100
|
|
||||||
displayName: Show disk usage
|
|
@ -1,3 +0,0 @@
|
|||||||
steps:
|
|
||||||
- bash: printenv | sort
|
|
||||||
displayName: Show environment variables
|
|
@ -1,9 +0,0 @@
|
|||||||
steps:
|
|
||||||
- bash: |
|
|
||||||
git clone --depth=1 https://github.com/rust-lang-nursery/rust-toolstate.git
|
|
||||||
cd rust-toolstate
|
|
||||||
python2.7 "$BUILD_SOURCESDIRECTORY/src/tools/publish_toolstate.py" "$(git rev-parse HEAD)" "$(git log --format=%s -n1 HEAD)" "" ""
|
|
||||||
cd ..
|
|
||||||
rm -rf rust-toolstate
|
|
||||||
condition: and(succeeded(), eq(variables['IMAGE'], 'mingw-check'))
|
|
||||||
displayName: Verify the publish_toolstate script works
|
|
@ -11,7 +11,6 @@ variables:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
- job: Linux
|
- job: Linux
|
||||||
timeoutInMinutes: 180
|
|
||||||
pool:
|
pool:
|
||||||
vmImage: ubuntu-16.04
|
vmImage: ubuntu-16.04
|
||||||
strategy:
|
strategy:
|
||||||
@ -27,4 +26,4 @@ jobs:
|
|||||||
IMAGE: dist-x86_64-linux
|
IMAGE: dist-x86_64-linux
|
||||||
DEPLOY_ALT: 1
|
DEPLOY_ALT: 1
|
||||||
steps:
|
steps:
|
||||||
- template: steps/linux.yml
|
- template: steps/run.yml
|
||||||
|
Loading…
x
Reference in New Issue
Block a user