Skip to content

Commit a303e3d

Browse files
committed
fixup! Add a build definition for Azure DevOps
Use the `env` construct (possibly avoiding quoting issues). Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 38acbe0 commit a303e3d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

azure-pipelines.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,6 @@ phases:
215215
216216
cd "$(Build.SourcesDirectory)"; c
217217
218-
$env:HOME = "$(Build.SourcesDirectory)"
219-
$env:MSYSTEM = "MINGW64"
220218
git-sdk-64\git-cmd --command=usr\\bin\\bash.exe -lc @"
221219
. ci/lib.sh
222220
@@ -229,6 +227,9 @@ phases:
229227
"@
230228
c
231229
displayName: 'build & test'
230+
env:
231+
HOME: $(Build.SourcesDirectory)
232+
MSYSTEM: MINGW64
232233
- powershell: |
233234
if ("$GITFILESHAREPWD" -ne "" -and "$GITFILESHAREPWD" -ne "`$`(gitfileshare.pwd)") {
234235
cmd /c rmdir "$(Build.SourcesDirectory)\test-cache"

0 commit comments

Comments
 (0)