Skip to content

Commit

Permalink
Update azure-pipelines.yml for Azure Pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
crramirez committed Oct 14, 2023
1 parent a0e5656 commit 5b0a928
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit 5b0a928

Please sign in to comment.