File tree 2 files changed +5
-3
lines changed
eng/pipelines/templates/stages
src/SourceBuild/content/test/Microsoft.DotNet.Installer.Tests
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -988,7 +988,7 @@ stages:
988
988
- job : ValidateInstallers_Linux_x64
989
989
displayName : Validate Installers - Linux x64
990
990
pool : ${{ parameters.pool_Linux }}
991
- timeoutInMinutes : 240
991
+ timeoutInMinutes : 30
992
992
steps :
993
993
- template : ../steps/vmr-validate-installers.yml
994
994
parameters :
@@ -998,7 +998,7 @@ stages:
998
998
- job : ValidateInstallers_Linux_arm64
999
999
displayName : Validate Installers - Linux arm64
1000
1000
pool : ${{ parameters.pool_LinuxArm64 }}
1001
- timeoutInMinutes : 240
1001
+ timeoutInMinutes : 30
1002
1002
steps :
1003
1003
- template : ../steps/vmr-validate-installers.yml
1004
1004
parameters :
Original file line number Diff line number Diff line change @@ -55,7 +55,9 @@ public LinuxInstallerTests(ITestOutputHelper outputHelper)
55
55
_contextDir = Path . Combine ( _tmpDir , Path . GetRandomFileName ( ) ) ;
56
56
Directory . CreateDirectory ( _contextDir ) ;
57
57
58
- _excludeLinuxArch = Config . Architecture == Architecture . X64 ? "arm64" : "x64" ;
58
+ _excludeLinuxArch = Config . Architecture == Architecture . X64 ?
59
+ Architecture . Arm64 . ToString ( ) . ToLower ( ) :
60
+ Architecture . X64 . ToString ( ) . ToLower ( ) ;
59
61
}
60
62
61
63
public void Dispose ( )
You can’t perform that action at this time.
0 commit comments