Set working directory

This commit is contained in:
Nick Craig-Wood 2019-04-29 15:44:57 +01:00
parent f633996da6
commit 0554daf3d8

View File

@ -121,6 +121,7 @@ steps:
env env
printf "\n\nRclone environment:\n\n" printf "\n\nRclone environment:\n\n"
make vars make vars
workingDirectory: '$(modulePath)'
displayName: Print Go version and environment displayName: Print Go version and environment
- script: | - script: |
@ -131,6 +132,7 @@ steps:
- bash: | - bash: |
make racequicktest make racequicktest
workingDirectory: '$(modulePath)'
displayName: Race test displayName: Race test
condition: eq( variables['GO_LATEST'], 'true' ) condition: eq( variables['GO_LATEST'], 'true' )
@ -138,11 +140,13 @@ steps:
make build_dep make build_dep
make check make check
condition: and( eq( variables['Agent.OS'], 'Linux' ), eq( variables['GO_LATEST'], 'true' ) ) condition: and( eq( variables['Agent.OS'], 'Linux' ), eq( variables['GO_LATEST'], 'true' ) )
workingDirectory: '$(modulePath)'
displayName: Code quality test displayName: Code quality test
- bash: | - bash: |
make compile_all make compile_all
condition: and( eq( variables['Agent.OS'], 'Linux' ), eq( variables['GO_LATEST'], 'true' ) ) condition: and( eq( variables['Agent.OS'], 'Linux' ), eq( variables['GO_LATEST'], 'true' ) )
workingDirectory: '$(modulePath)'
displayName: Compile all architectures test displayName: Compile all architectures test
# FIXME deploy # FIXME deploy