2020-10-30 06:41:36 +00:00
|
|
|
name: Release
|
2020-10-30 06:41:10 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
2020-12-18 06:08:04 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-12-31 10:13:19 +00:00
|
|
|
goos: [linux, windows, darwin, freebsd ]
|
2020-12-25 10:07:30 +00:00
|
|
|
goarch: [amd64, arm]
|
2021-02-19 10:40:30 +00:00
|
|
|
exclude:
|
2020-12-18 07:23:47 +00:00
|
|
|
- goarch: arm
|
|
|
|
goos: darwin
|
2020-12-25 10:07:30 +00:00
|
|
|
- goarch: arm
|
|
|
|
goos: windows
|
2020-12-18 07:23:47 +00:00
|
|
|
|
2020-10-30 06:41:10 +00:00
|
|
|
steps:
|
|
|
|
|
2021-02-19 10:40:30 +00:00
|
|
|
- name: Check out code into the Go module directory
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Wait for the deletion
|
|
|
|
uses: jakejarvis/wait-action@master
|
|
|
|
with:
|
|
|
|
time: '30s'
|
|
|
|
|
|
|
|
- name: Set BUILD_TIME env
|
2021-08-10 10:30:18 +00:00
|
|
|
run: echo BUILD_TIME=$(date -u +%Y%m%d-%H%M) >> ${GITHUB_ENV}
|
2021-02-19 10:40:30 +00:00
|
|
|
|
|
|
|
- name: Go Release Binaries
|
2021-04-30 06:05:23 +00:00
|
|
|
uses: wangyoucao577/go-release-action@v1.17
|
2021-02-19 10:40:30 +00:00
|
|
|
with:
|
2021-04-29 22:50:41 +00:00
|
|
|
goversion: 1.16
|
2021-02-19 10:40:30 +00:00
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
goos: ${{ matrix.goos }}
|
|
|
|
goarch: ${{ matrix.goarch }}
|
|
|
|
release_tag: dev
|
|
|
|
overwrite: true
|
2021-03-11 01:17:06 +00:00
|
|
|
pre_command: export CGO_ENABLED=0
|
2021-02-19 10:40:30 +00: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
|
|
|
|
binary_name: weed-large-disk
|
|
|
|
asset_name: "weed-large-disk-${{ env.BUILD_TIME }}-${{ matrix.goos }}-${{ matrix.goarch }}"
|
|
|
|
|
|
|
|
- name: Go Release Binaries
|
2021-04-30 06:05:23 +00:00
|
|
|
uses: wangyoucao577/go-release-action@v1.17
|
2021-02-19 10:40:30 +00:00
|
|
|
with:
|
2021-04-29 22:50:41 +00:00
|
|
|
goversion: 1.16
|
2021-02-19 10:40:30 +00:00
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
goos: ${{ matrix.goos }}
|
|
|
|
goarch: ${{ matrix.goarch }}
|
|
|
|
release_tag: dev
|
|
|
|
overwrite: true
|
2021-03-11 01:17:06 +00:00
|
|
|
pre_command: export CGO_ENABLED=0
|
2021-02-19 10:40:30 +00:00
|
|
|
ldflags: -extldflags -static -X github.com/chrislusf/seaweedfs/weed/util.COMMIT=${{github.sha}}
|
|
|
|
# Where to run `go build .`
|
|
|
|
project_path: weed
|
2021-04-14 22:47:09 +00:00
|
|
|
binary_name: weed
|
2021-02-19 10:40:30 +00:00
|
|
|
asset_name: "weed-${{ env.BUILD_TIME }}-${{ matrix.goos }}-${{ matrix.goarch }}"
|