We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84784b9 commit 7cc16e0Copy full SHA for 7cc16e0
.azure-pipelines/templates/ut-no-ib-env.yaml
@@ -14,10 +14,20 @@ steps:
14
targetType: 'inline'
15
script: |
16
mkdir build && cd build
17
- cmake -DCMAKE_BUILD_TYPE=Release ..
+ cmake -DCMAKE_BUILD_TYPE=Release -DMSCCLPP_BYPASS_GPU_CHECK=ON -DMSCCLPP_USE_CUDA=ON ..
18
make -j
19
workingDirectory: '$(System.DefaultWorkingDirectory)'
20
21
+- task: AzureCLI@2
22
+ name: StartVMSS
23
+ displayName: Start VMSS
24
+ inputs:
25
+ azureSubscription: ${{ parameters.subscription }}
26
+ scriptType: bash
27
+ scriptLocation: inlineScript
28
+ inlineScript: |
29
+ az vmss start --name ${{ parameters.vmssName }} --resource-group mscclpp
30
+
31
- task: Bash@3
32
name: DeployTestEnv
33
displayName: Deploy Test Env
0 commit comments