diff options
| author | Chris Lu <chrislusf@users.noreply.github.com> | 2021-11-11 12:02:42 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-11 12:02:42 -0800 |
| commit | bef9c2943b07ccc7b29a36b4a26eda546c9b931a (patch) | |
| tree | 093364879168777eb345b5fbb6ec3a19bbbe6f4f | |
| parent | 12d9108bb4047e52defdaf545de211cda81e0e10 (diff) | |
| parent | 79a1903021189b02ca1abb2489ce24edd60f9220 (diff) | |
| download | seaweedfs-bef9c2943b07ccc7b29a36b4a26eda546c9b931a.tar.xz seaweedfs-bef9c2943b07ccc7b29a36b4a26eda546c9b931a.zip | |
Merge branch 'master' into bugfix/unexpeced-eof
| -rw-r--r-- | .github/workflows/binaries_dev.yml | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/.github/workflows/binaries_dev.yml b/.github/workflows/binaries_dev.yml index 99f5d3e65..a3a912595 100644 --- a/.github/workflows/binaries_dev.yml +++ b/.github/workflows/binaries_dev.yml @@ -38,9 +38,6 @@ jobs: - name: Set BUILD_TIME env run: echo BUILD_TIME=$(date -u +%Y%m%d-%H%M) >> ${GITHUB_ENV} - #- name: disable http2 env - # run: export GODEBUG=http2client=0 - - name: Go Release Binaries Large Disk uses: wangyoucao577/go-release-action@bugfix/upload-fail with: @@ -65,7 +62,7 @@ jobs: goarch: ${{ matrix.goarch }} release_tag: dev overwrite: true - pre_command: export CGO_ENABLED=0 + pre_command: export CGO_ENABLED=0 && GODEBUG=http2client=0 ldflags: -extldflags -static -X github.com/chrislusf/seaweedfs/weed/util.COMMIT=${{github.sha}} # Where to run `go build .` project_path: weed @@ -96,7 +93,7 @@ jobs: goarch: ${{ matrix.goarch }} release_tag: dev overwrite: true - pre_command: export CGO_ENABLED=0 + pre_command: export CGO_ENABLED=0 && GODEBUG=http2client=0 build_flags: -tags 5BytesOffset # optional, default is ldflags: -extldflags -static -X github.com/chrislusf/seaweedfs/weed/util.COMMIT=${{github.sha}} # Where to run `go build .` @@ -112,7 +109,7 @@ jobs: goarch: ${{ matrix.goarch }} release_tag: dev overwrite: true - pre_command: export CGO_ENABLED=0 + pre_command: export CGO_ENABLED=0 && GODEBUG=http2client=0 ldflags: -extldflags -static -X github.com/chrislusf/seaweedfs/weed/util.COMMIT=${{github.sha}} # Where to run `go build .` project_path: weed |
