Skip to content

Commit 84ef745

Browse files
committed
trigger
Signed-off-by: Ludvig Liljenberg <[email protected]>
1 parent ce68df2 commit 84ef745

File tree

2 files changed

+34
-30
lines changed

2 files changed

+34
-30
lines changed

build/azure-pipelines.pr-automatic.yml

+17-15
Original file line numberDiff line numberDiff line change
@@ -212,21 +212,23 @@ stages:
212212
inputs:
213213
dockerVersion: 24.0.5
214214
releaseType: stable
215-
# - task: CmdLine@2
216-
# displayName: Validate docker
217-
# condition: eq(variables.poolName, 'windows')
218-
# inputs:
219-
# script: |
220-
# docker -v
221-
# docker ps
222-
# - task: PowerShell@2
223-
# displayName: Validate docker PS
224-
# condition: eq(variables.poolName, 'windows')
225-
# inputs:
226-
# targetType: 'inline'
227-
# script: |
228-
# docker -v
229-
# docker ps
215+
- task: CmdLine@2
216+
displayName: Validate docker
217+
condition: eq(variables.poolName, 'windows')
218+
inputs:
219+
script: |
220+
docker info
221+
docker -v
222+
docker ps
223+
- task: PowerShell@2
224+
displayName: Validate docker PS
225+
condition: eq(variables.poolName, 'windows')
226+
inputs:
227+
targetType: 'inline'
228+
script: |
229+
docker info
230+
docker -v
231+
docker ps
230232
- task: Cache@2
231233
displayName: Cache Go Build
232234
inputs:

build/azure-pipelines.release-template.yml

+17-15
Original file line numberDiff line numberDiff line change
@@ -234,21 +234,23 @@ stages:
234234
inputs:
235235
dockerVersion: 24.0.5
236236
releaseType: stable
237-
# - task: CmdLine@2
238-
# displayName: Validate docker
239-
# condition: eq(variables.poolName, 'windows')
240-
# inputs:
241-
# script: |
242-
# docker -v
243-
# docker ps
244-
# - task: PowerShell@2
245-
# displayName: Validate docker PS
246-
# condition: eq(variables.poolName, 'windows')
247-
# inputs:
248-
# targetType: 'inline'
249-
# script: |
250-
# docker -v
251-
# docker ps
237+
- task: CmdLine@2
238+
displayName: Validate docker
239+
condition: eq(variables.poolName, 'windows')
240+
inputs:
241+
script: |
242+
docker info
243+
docker -v
244+
docker ps
245+
- task: PowerShell@2
246+
displayName: Validate docker PS
247+
condition: eq(variables.poolName, 'windows')
248+
inputs:
249+
targetType: 'inline'
250+
script: |
251+
docker info
252+
docker -v
253+
docker ps
252254
253255
- stage: Publish
254256
dependsOn: Validate

0 commit comments

Comments
 (0)