Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .pipelines/containers/container-template-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ steps:
addPipelineData: false

- powershell: |
echo "using tag ${{ parameters.tag }}"
powershell.exe -command "& { . .\build\scripts\windows.ps1; Retry({${{ parameters.name }}-image windows-${{ parameters.arch }}-${{ parameters.tag }}}) }"
name: image_build
displayName: Image Build
Expand Down
12 changes: 11 additions & 1 deletion .pipelines/npm/npm-conformance-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ jobs:
parameters:
name: $(name)
arch: $(arch)
tag: $(TAG)

- job: k8se2e
displayName: "Build Kubernetes Test Suite"
Expand Down Expand Up @@ -438,9 +439,18 @@ jobs:
FQDN=`az aks show -n $CLUSTER_NAME -g $CLUSTER_NAME --query fqdn -o tsv`
echo "##vso[task.setvariable variable=FQDN]$FQDN"

- bash: |


- script: |
cat ~/.kube/config
curl -fsSL github.com/mattfenwick/cyclonus/releases/latest/download/cyclonus_linux_amd64.tar.gz | tar -zxv
name: download_cyclonus
displayName: "Download Cyclonus"
failOnStderr: false
condition: always()


- script: |
./test/cyclonus/test-cyclonus-windows.sh
name: cyclonus
displayName: "Run Cyclonus Test"
Expand Down