Skip to content

Commit 7cc16e0

Browse files
committed
wip
1 parent 84784b9 commit 7cc16e0

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.azure-pipelines/templates/ut-no-ib-env.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,20 @@ steps:
1414
targetType: 'inline'
1515
script: |
1616
mkdir build && cd build
17-
cmake -DCMAKE_BUILD_TYPE=Release ..
17+
cmake -DCMAKE_BUILD_TYPE=Release -DMSCCLPP_BYPASS_GPU_CHECK=ON -DMSCCLPP_USE_CUDA=ON ..
1818
make -j
1919
workingDirectory: '$(System.DefaultWorkingDirectory)'
2020

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+
2131
- task: Bash@3
2232
name: DeployTestEnv
2333
displayName: Deploy Test Env

0 commit comments

Comments
 (0)