diff options
| author | ras0219 <533828+ras0219@users.noreply.github.com> | 2020-11-18 12:21:23 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-18 12:21:23 -0800 |
| commit | 5c48bee4519267e565d5cc550a8618a91f47961d (patch) | |
| tree | 4e075a04e20117913f8949f443ab706ecf36db6b /scripts/azure-pipelines/osx | |
| parent | 2018406edbe323bcf13a19cc131a08bc3eca18d9 (diff) | |
| download | vcpkg-5c48bee4519267e565d5cc550a8618a91f47961d.tar.gz vcpkg-5c48bee4519267e565d5cc550a8618a91f47961d.zip | |
[vcpkg] Add experimental x-azblob binary provider (#13626)
* [vcpkg] Add experimental x-azblob binary provider
* [vcpkg] Test azblob storage provider in CI
* [vcpkg] Address some CR comments from #13639
* [vcpkg] Fixup azure-pipelines
* [vcpkg] Fix regression where the downloaded package is purged before decompressing
* [vcpkg] Further refactor vcpkg::Downloads
* [vcpkg] Enable OSX for x-azblob testing
* [vcpkg] Reduce diff against master
* [vcpkg] Extract Downloads::details::split_uri_view
* [vcpkg] Address PR comments
* [vcpkg] Add testing and metrics for x-azblob
* [vcpkg] Add docs for x-azblob
This includes a note that it is currently experimental
* [vcpkg] Address CR comments
* [vcpkg] Revert pipeline changes except OSX to minimize disruption
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
Diffstat (limited to 'scripts/azure-pipelines/osx')
| -rw-r--r-- | scripts/azure-pipelines/osx/azure-pipelines.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/azure-pipelines/osx/azure-pipelines.yml b/scripts/azure-pipelines/osx/azure-pipelines.yml index 6f2e90fec..c0e1c3a26 100644 --- a/scripts/azure-pipelines/osx/azure-pipelines.yml +++ b/scripts/azure-pipelines/osx/azure-pipelines.yml @@ -14,6 +14,9 @@ jobs: value: /Users/vagrant/Data
- name: VCPKG_DOWNLOADS
value: /Users/vagrant/Data/downloads
+ - group: azblob-test-sas-group
+ - name: BINARY_SOURCE_STUB
+ value: "x-azblob,$(azblob-root-url),$(azblob-test-sas)"
steps:
- bash: df -h
@@ -40,7 +43,7 @@ jobs: inputs:
failOnStderr: true
filePath: 'scripts/azure-pipelines/test-modified-ports.ps1'
- arguments: '-Triplet x64-osx -BuildReason $(Build.Reason) -ArchivesRoot ${{ variables.WORKING_ROOT }}/archives -WorkingRoot ${{ variables.WORKING_ROOT }} -ArtifactStagingDirectory $(Build.ArtifactStagingDirectory)'
+ arguments: '-Triplet x64-osx -BuildReason $(Build.Reason) -BinarySourceStub "$(BINARY_SOURCE_STUB)" -WorkingRoot ${{ variables.WORKING_ROOT }} -ArtifactStagingDirectory $(Build.ArtifactStagingDirectory)'
- bash: |
df -h
displayName: 'Report on Disk Space After Build'
|
