From 3b1122c88821da34945a57e570e1f8ebba3a7063 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Sat, 30 Jan 2021 18:01:12 +0000 Subject: [PATCH] azureblob: require go1.14+ to compile due to SDK changes --- backend/azureblob/azureblob.go | 2 +- backend/azureblob/azureblob_internal_test.go | 2 +- backend/azureblob/azureblob_test.go | 2 +- backend/azureblob/azureblob_unsupported.go | 2 +- backend/azureblob/imds.go | 2 +- backend/azureblob/imds_test.go | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/backend/azureblob/azureblob.go b/backend/azureblob/azureblob.go index dc4b0cb1e..e0478c207 100644 --- a/backend/azureblob/azureblob.go +++ b/backend/azureblob/azureblob.go @@ -1,6 +1,6 @@ // Package azureblob provides an interface to the Microsoft Azure blob object storage system -// +build !plan9,!solaris,!js,go1.13 +// +build !plan9,!solaris,!js,go1.14 package azureblob diff --git a/backend/azureblob/azureblob_internal_test.go b/backend/azureblob/azureblob_internal_test.go index 59bec6841..80e15a229 100644 --- a/backend/azureblob/azureblob_internal_test.go +++ b/backend/azureblob/azureblob_internal_test.go @@ -1,4 +1,4 @@ -// +build !plan9,!solaris,!js,go1.13 +// +build !plan9,!solaris,!js,go1.14 package azureblob diff --git a/backend/azureblob/azureblob_test.go b/backend/azureblob/azureblob_test.go index 3f19a639d..0f9b56931 100644 --- a/backend/azureblob/azureblob_test.go +++ b/backend/azureblob/azureblob_test.go @@ -1,6 +1,6 @@ // Test AzureBlob filesystem interface -// +build !plan9,!solaris,!js,go1.13 +// +build !plan9,!solaris,!js,go1.14 package azureblob diff --git a/backend/azureblob/azureblob_unsupported.go b/backend/azureblob/azureblob_unsupported.go index 63671fddf..8a4a8255e 100644 --- a/backend/azureblob/azureblob_unsupported.go +++ b/backend/azureblob/azureblob_unsupported.go @@ -1,6 +1,6 @@ // Build for azureblob for unsupported platforms to stop go complaining // about "no buildable Go source files " -// +build plan9 solaris js !go1.13 +// +build plan9 solaris js !go1.14 package azureblob diff --git a/backend/azureblob/imds.go b/backend/azureblob/imds.go index 4af267e94..b07981c3e 100644 --- a/backend/azureblob/imds.go +++ b/backend/azureblob/imds.go @@ -1,4 +1,4 @@ -// +build !plan9,!solaris,!js,go1.13 +// +build !plan9,!solaris,!js,go1.14 package azureblob diff --git a/backend/azureblob/imds_test.go b/backend/azureblob/imds_test.go index 315df1bd1..b30603a20 100644 --- a/backend/azureblob/imds_test.go +++ b/backend/azureblob/imds_test.go @@ -1,4 +1,4 @@ -// +build !plan9,!solaris,!js,go1.13 +// +build !plan9,!solaris,!js,go1.14 package azureblob