Skip to content

Commit ac0aa75

Browse files
committed
sdks: Use https for xamjenkinsartifacts llvm archive download
Accessing the storage account fails now when using plain http.
1 parent bffb382 commit ac0aa75

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

llvm/build.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ LLVM_PREFIX ?= $(abspath $(abs_top_srcdir)/llvm/usr)
66
# LLVM_BRANCH := $(shell git -C "$(abs_top_srcdir)/external/llvm-project/llvm" rev-parse --abbrev-ref HEAD)
77
LLVM_VERSION := $(shell git -C "$(abs_top_srcdir)/external/llvm-project/llvm" rev-parse HEAD)
88

9-
# FIXME: URL should be http://xamjenkinsartifact.blob.core.windows.net/build-package-osx-llvm-$(LLVM_BRANCH)/llvm-osx64-$(LLVM_VERSION).tar.gz
10-
LLVM_DOWNLOAD_LOCATION = "http://xamjenkinsartifact.blob.core.windows.net/build-package-osx-llvm-release60/llvm-osx64-$(LLVM_VERSION).tar.gz"
9+
# FIXME: URL should be https://xamjenkinsartifact.blob.core.windows.net/build-package-osx-llvm-$(LLVM_BRANCH)/llvm-osx64-$(LLVM_VERSION).tar.gz
10+
LLVM_DOWNLOAD_LOCATION = "https://xamjenkinsartifact.blob.core.windows.net/build-package-osx-llvm-release60/llvm-osx64-$(LLVM_VERSION).tar.gz"
1111

1212
CPU_COUNT ?= $(shell getconf _NPROCESSORS_ONLN || echo 8)
1313

sdks/builds/llvm.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
define LLVMProvisionTemplate
88
_$(1)-$(2)_HASH = $$(shell git -C $(3) rev-parse HEAD)
99
_$(1)-$(2)_PACKAGE = $(1)-$(2)-$$(_$(1)-$(2)_HASH)-$$(UNAME).tar.gz
10-
_$(1)-$(2)_URL = "http://xamjenkinsartifact.blob.core.windows.net/mono-sdks/$$(_$(1)-$(2)_PACKAGE)"
10+
_$(1)-$(2)_URL = "https://xamjenkinsartifact.blob.core.windows.net/mono-sdks/$$(_$(1)-$(2)_PACKAGE)"
1111

1212
$$(TOP)/sdks/out/$(1)-$(2)/.stamp-download:
1313
curl --location --silent --show-error $$(_$(1)-$(2)_URL) | tar -xvzf - -C $$(dir $$@)

0 commit comments

Comments
 (0)