This is an automated email from the ASF dual-hosted git repository.
pdesai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-wskdeploy.git
The following commit(s) were added to refs/heads/master by this push:
new 7093f6c Remove unsupported Darwin-386 (23-bit) from GoLang 1.15 build
matrix (#1115)
7093f6c is described below
commit 7093f6c6a3b6e652128cdbc69abda702035ced06
Author: Matt Rutkowski <[email protected]>
AuthorDate: Fri Feb 12 16:55:32 2021 -0600
Remove unsupported Darwin-386 (23-bit) from GoLang 1.15 build matrix (#1115)
---
build.gradle | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.gradle b/build.gradle
index a6f115b..07fbe7c 100644
--- a/build.gradle
+++ b/build.gradle
@@ -213,7 +213,7 @@ if (rootProject.hasProperty('buildPlatforms')) {
rootProject.ext.platforms = [
'linux-386', 'linux-amd64',
'linux-s390x', 'linux-ppc64le', 'linux-arm', 'linux-arm64',
- 'darwin-386', 'darwin-amd64',
+ 'darwin-amd64',
'windows-386', 'windows-amd64'
].collect { new OpenWhiskPlatform(it) }
} else {