From 0afd5a220451a5f782eda19e5fa64a90780cbb2e Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Mon, 29 Jun 2020 14:51:16 +0100 Subject: [PATCH] build: drop xgo builds for macOS, Linux and Windows The xgo builds for macOS, Linux and Windows are used for testing - the actual builds are built on the correct platform. Since the darwin build has stopped working, this can be an excuse for removing these builds as they really are only for testing. The Android and IOS builds will continue to be built by xgo See: https://github.com/billziss-gh/cgofuse/issues/47 --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1fd47ab30..6dd8ddbe7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -229,12 +229,12 @@ jobs: run: | docker pull billziss/xgo-cgofuse GO111MODULE=off go get -v github.com/karalabe/xgo # don't add to go.mod - xgo \ - -image=billziss/xgo-cgofuse \ - -targets=darwin/386,darwin/amd64,linux/386,linux/amd64,windows/386,windows/amd64 \ - -tags cmount \ - -dest build \ - . + # xgo \ + # -image=billziss/xgo-cgofuse \ + # -targets=darwin/386,darwin/amd64,linux/386,linux/amd64,windows/386,windows/amd64 \ + # -tags cmount \ + # -dest build \ + # . xgo \ -image=billziss/xgo-cgofuse \ -targets=android/*,ios/* \