@@ -38,38 +38,26 @@ steps:
3838 displayName : Show the current environment
3939
4040- bash : src/ci/scripts/install-sccache.sh
41- env :
42- AGENT_OS : $(Agent.OS)
4341 displayName : Install sccache
4442 condition : and(succeeded(), not(variables.SKIP_JOB))
4543
4644- bash : src/ci/scripts/install-clang.sh
47- env :
48- AGENT_OS : $(Agent.OS)
4945 displayName : Install clang
5046 condition : and(succeeded(), not(variables.SKIP_JOB))
5147
5248- bash : src/ci/scripts/switch-xcode.sh
53- env :
54- AGENT_OS : $(Agent.OS)
5549 displayName : Switch to Xcode 9.3
5650 condition : and(succeeded(), not(variables.SKIP_JOB))
5751
5852- bash : src/ci/scripts/install-wix.sh
59- env :
60- AGENT_OS : $(Agent.OS)
6153 displayName : Install wix
6254 condition : and(succeeded(), not(variables.SKIP_JOB))
6355
6456- bash : src/ci/scripts/install-innosetup.sh
65- env :
66- AGENT_OS : $(Agent.OS)
6757 displayName : Install InnoSetup
6858 condition : and(succeeded(), not(variables.SKIP_JOB))
6959
7060- bash : src/ci/scripts/windows-symlink-build-dir.sh
71- env :
72- AGENT_OS : $(Agent.OS)
7361 displayName : Ensure the build happens on C:\ instead of D:\
7462 condition : and(succeeded(), not(variables.SKIP_JOB))
7563
@@ -78,35 +66,22 @@ steps:
7866 condition : and(succeeded(), not(variables.SKIP_JOB))
7967
8068- bash : src/ci/scripts/install-msys2.sh
81- env :
82- AGENT_OS : $(Agent.OS)
83- SYSTEM_WORKFOLDER : $(System.Workfolder)
8469 displayName : Install msys2
8570 condition : and(succeeded(), not(variables.SKIP_JOB))
8671
8772- bash : src/ci/scripts/install-msys2-packages.sh
88- env :
89- AGENT_OS : $(Agent.OS)
90- SYSTEM_WORKFOLDER : $(System.Workfolder)
9173 displayName : Install msys2 packages
9274 condition : and(succeeded(), not(variables.SKIP_JOB))
9375
9476- bash : src/ci/scripts/install-mingw.sh
95- env :
96- AGENT_OS : $(Agent.OS)
97- SYSTEM_WORKFOLDER : $(System.Workfolder)
9877 displayName : Install MinGW
9978 condition : and(succeeded(), not(variables.SKIP_JOB))
10079
10180- bash : src/ci/scripts/install-ninja.sh
102- env :
103- AGENT_OS : $(Agent.OS)
10481 displayName : Install ninja
10582 condition : and(succeeded(), not(variables.SKIP_JOB))
10683
10784- bash : src/ci/scripts/enable-docker-ipv6.sh
108- env :
109- AGENT_OS : $(Agent.OS)
11085 displayName : Enable IPv6 on Docker
11186 condition : and(succeeded(), not(variables.SKIP_JOB))
11287
@@ -120,22 +95,16 @@ steps:
12095 condition : and(succeeded(), not(variables.SKIP_JOB))
12196
12297- bash : src/ci/scripts/checkout-submodules.sh
123- env :
124- AGENT_OS : $(Agent.OS)
12598 displayName : Checkout submodules
12699 condition : and(succeeded(), not(variables.SKIP_JOB))
127100
128101- bash : src/ci/scripts/verify-line-endings.sh
129- env :
130- AGENT_OS : $(Agent.OS)
131102 displayName : Verify line endings
132103 condition : and(succeeded(), not(variables.SKIP_JOB))
133104
134105# Ensure the `aws` CLI is installed so we can deploy later on, cache docker
135106# images, etc.
136107- bash : src/ci/scripts/install-awscli.sh
137- env :
138- AGENT_OS : $(Agent.OS)
139108 condition : and(succeeded(), not(variables.SKIP_JOB))
140109 displayName : Install awscli
141110
0 commit comments