2021-08-29 11:12:30 +08:00
|
|
|
name: "go: build dev binaries"
|
2020-10-30 14:41:10 +08:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
2021-09-07 09:39:29 +08:00
|
|
|
cleanup:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: Delete old release assets
|
|
|
|
uses: mknejp/delete-release-assets@v1
|
|
|
|
with:
|
|
|
|
token: ${{ github.token }}
|
|
|
|
tag: dev
|
|
|
|
fail-if-no-assets: false
|
|
|
|
assets: |
|
|
|
|
weed-*
|
|
|
|
|
2021-09-07 13:54:29 +08:00
|
|
|
build_dev:
|
|
|
|
needs: cleanup
|
2020-10-30 14:41:10 +08:00
|
|
|
runs-on: ubuntu-latest
|
2020-12-18 14:08:04 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-09-07 16:44:52 +08:00
|
|
|
goos: [linux, windows, darwin, freebsd]
|
|
|
|
goarch: [amd64, arm, arm64]
|
2021-02-19 18:40:30 +08:00
|
|
|
exclude:
|
2020-12-18 15:23:47 +08:00
|
|
|
- goarch: arm
|
|
|
|
goos: darwin
|
2021-08-24 03:45:44 +08:00
|
|
|
- goarch: 386
|
|
|
|
goos: darwin
|
2021-08-28 09:32:35 +08:00
|
|
|
- goarch: arm
|
|
|
|
goos: windows
|
2021-08-24 03:52:18 +08:00
|
|
|
- goarch: arm64
|
|
|
|
goos: windows
|
2020-12-18 15:23:47 +08:00
|
|
|
|
2020-10-30 14:41:10 +08:00
|
|
|
steps:
|
|
|
|
|
2021-02-19 18:40:30 +08:00
|
|
|
- name: Check out code into the Go module directory
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Set BUILD_TIME env
|
2021-08-10 18:30:18 +08:00
|
|
|
run: echo BUILD_TIME=$(date -u +%Y%m%d-%H%M) >> ${GITHUB_ENV}
|
2021-02-19 18:40:30 +08:00
|
|
|
|
2021-09-07 14:11:59 +08:00
|
|
|
- name: Go Release Binaries Large Disk
|
2021-08-28 15:41:34 +08:00
|
|
|
uses: wangyoucao577/go-release-action@v1.20
|
2021-02-19 18:40:30 +08:00
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
goos: ${{ matrix.goos }}
|
|
|
|
goarch: ${{ matrix.goarch }}
|
|
|
|
release_tag: dev
|
|
|
|
overwrite: true
|
2021-03-11 09:17:06 +08:00
|
|
|
pre_command: export CGO_ENABLED=0
|
2021-02-19 18:40:30 +08:00
|
|
|
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 .`
|
|
|
|
project_path: weed
|
2021-09-07 14:44:08 +08:00
|
|
|
binary_name: weed-large-disk
|
2021-02-19 18:40:30 +08:00
|
|
|
asset_name: "weed-large-disk-${{ env.BUILD_TIME }}-${{ matrix.goos }}-${{ matrix.goarch }}"
|
|
|
|
|
2021-09-07 14:11:59 +08:00
|
|
|
- name: Go Release Binaries Normal Volume Size
|
2021-08-28 15:41:34 +08:00
|
|
|
uses: wangyoucao577/go-release-action@v1.20
|
2021-02-19 18:40:30 +08:00
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
goos: ${{ matrix.goos }}
|
|
|
|
goarch: ${{ matrix.goarch }}
|
|
|
|
release_tag: dev
|
|
|
|
overwrite: true
|
2021-03-11 09:17:06 +08:00
|
|
|
pre_command: export CGO_ENABLED=0
|
2021-02-19 18:40:30 +08:00
|
|
|
ldflags: -extldflags -static -X github.com/chrislusf/seaweedfs/weed/util.COMMIT=${{github.sha}}
|
|
|
|
# Where to run `go build .`
|
|
|
|
project_path: weed
|
2021-09-07 14:44:08 +08:00
|
|
|
binary_name: weed-normal-disk
|
2021-02-19 18:40:30 +08:00
|
|
|
asset_name: "weed-${{ env.BUILD_TIME }}-${{ matrix.goos }}-${{ matrix.goarch }}"
|