@@ -38,38 +38,26 @@ steps:
38
38
displayName : Show the current environment
39
39
40
40
- bash : src/ci/scripts/install-sccache.sh
41
- env :
42
- AGENT_OS : $(Agent.OS)
43
41
displayName : Install sccache
44
42
condition : and(succeeded(), not(variables.SKIP_JOB))
45
43
46
44
- bash : src/ci/scripts/install-clang.sh
47
- env :
48
- AGENT_OS : $(Agent.OS)
49
45
displayName : Install clang
50
46
condition : and(succeeded(), not(variables.SKIP_JOB))
51
47
52
48
- bash : src/ci/scripts/switch-xcode.sh
53
- env :
54
- AGENT_OS : $(Agent.OS)
55
49
displayName : Switch to Xcode 9.3
56
50
condition : and(succeeded(), not(variables.SKIP_JOB))
57
51
58
52
- bash : src/ci/scripts/install-wix.sh
59
- env :
60
- AGENT_OS : $(Agent.OS)
61
53
displayName : Install wix
62
54
condition : and(succeeded(), not(variables.SKIP_JOB))
63
55
64
56
- bash : src/ci/scripts/install-innosetup.sh
65
- env :
66
- AGENT_OS : $(Agent.OS)
67
57
displayName : Install InnoSetup
68
58
condition : and(succeeded(), not(variables.SKIP_JOB))
69
59
70
60
- bash : src/ci/scripts/windows-symlink-build-dir.sh
71
- env :
72
- AGENT_OS : $(Agent.OS)
73
61
displayName : Ensure the build happens on C:\ instead of D:\
74
62
condition : and(succeeded(), not(variables.SKIP_JOB))
75
63
@@ -78,35 +66,22 @@ steps:
78
66
condition : and(succeeded(), not(variables.SKIP_JOB))
79
67
80
68
- bash : src/ci/scripts/install-msys2.sh
81
- env :
82
- AGENT_OS : $(Agent.OS)
83
- SYSTEM_WORKFOLDER : $(System.Workfolder)
84
69
displayName : Install msys2
85
70
condition : and(succeeded(), not(variables.SKIP_JOB))
86
71
87
72
- bash : src/ci/scripts/install-msys2-packages.sh
88
- env :
89
- AGENT_OS : $(Agent.OS)
90
- SYSTEM_WORKFOLDER : $(System.Workfolder)
91
73
displayName : Install msys2 packages
92
74
condition : and(succeeded(), not(variables.SKIP_JOB))
93
75
94
76
- bash : src/ci/scripts/install-mingw.sh
95
- env :
96
- AGENT_OS : $(Agent.OS)
97
- SYSTEM_WORKFOLDER : $(System.Workfolder)
98
77
displayName : Install MinGW
99
78
condition : and(succeeded(), not(variables.SKIP_JOB))
100
79
101
80
- bash : src/ci/scripts/install-ninja.sh
102
- env :
103
- AGENT_OS : $(Agent.OS)
104
81
displayName : Install ninja
105
82
condition : and(succeeded(), not(variables.SKIP_JOB))
106
83
107
84
- bash : src/ci/scripts/enable-docker-ipv6.sh
108
- env :
109
- AGENT_OS : $(Agent.OS)
110
85
displayName : Enable IPv6 on Docker
111
86
condition : and(succeeded(), not(variables.SKIP_JOB))
112
87
@@ -120,22 +95,16 @@ steps:
120
95
condition : and(succeeded(), not(variables.SKIP_JOB))
121
96
122
97
- bash : src/ci/scripts/checkout-submodules.sh
123
- env :
124
- AGENT_OS : $(Agent.OS)
125
98
displayName : Checkout submodules
126
99
condition : and(succeeded(), not(variables.SKIP_JOB))
127
100
128
101
- bash : src/ci/scripts/verify-line-endings.sh
129
- env :
130
- AGENT_OS : $(Agent.OS)
131
102
displayName : Verify line endings
132
103
condition : and(succeeded(), not(variables.SKIP_JOB))
133
104
134
105
# Ensure the `aws` CLI is installed so we can deploy later on, cache docker
135
106
# images, etc.
136
107
- bash : src/ci/scripts/install-awscli.sh
137
- env :
138
- AGENT_OS : $(Agent.OS)
139
108
condition : and(succeeded(), not(variables.SKIP_JOB))
140
109
displayName : Install awscli
141
110
0 commit comments