diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 047c8528..3f089d25 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -19,6 +19,15 @@ variables: appxPackageDir: '$(System.DefaultWorkingDirectory)\AppxPackages' steps: +- task: Bash@3 + displayName: Download and move 64 bit ARM image + inputs: + targetType: 'inline' + script: | + sudo apt update && sudo apt install -y wget + export CIRCLE_TOKEN='$(circleCiToken)' + curl -H "Circle-Token: ${CIRCLECI_TOKEN}" https://circleci.com/api/v1.1/project/github/WhitewaterFoundry/pengwin-rootfs-builds/latest/artifacts | grep -o 'https://[^"]*' | wget --verbose --header "Circle-Token: ${CIRCLE_TOKEN}" --input-file - + mv install_arm64_rootfs.tar.gz ARM64/install.tar.gz" - task: DownloadBuildArtifacts@0 displayName: Download 64 bit image inputs: @@ -36,15 +45,6 @@ steps: script: | move $(System.ArtifactsDirectory)\drop\install_amd64_rootfs.tar.gz x64\install.tar.gz -- task: Bash@3 - displayName: Download and move 64 bit ARM image - inputs: - targetType: 'inline' - script: | - export CIRCLE_TOKEN='$(circleCiToken)' - curl -H "Circle-Token: ${CIRCLECI_TOKEN}" https://circleci.com/api/v1.1/project/github/WhitewaterFoundry/pengwin-rootfs-builds/latest/artifacts | grep -o 'https://[^"]*' | wget --verbose --header "Circle-Token: ${CIRCLE_TOKEN}" --input-file - - mv install_arm64_rootfs.tar.gz ARM64/install.tar.gz" - - task: NuGetToolInstaller@1 - task: NuGetCommand@2