seaweedfs/.github/workflows/release.yml

71 lines
2.1 KiB
YAML
Raw Normal View History

2021-08-16 07:29:25 +00:00
name: Build Dev Binaries
on:
push:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
2020-12-18 06:08:04 +00:00
strategy:
matrix:
2021-08-23 19:38:58 +00:00
goos: [linux, windows, darwin, freebsd, netbsd, openbsd ]
goarch: [amd64, arm, arm64, 386]
2021-02-19 10:40:30 +00:00
exclude:
2020-12-18 07:23:47 +00:00
- goarch: arm
goos: darwin
2021-08-23 19:45:44 +00:00
- goarch: 386
goos: darwin
2021-08-23 19:52:18 +00:00
- goarch: arm64
goos: windows
2020-12-25 10:07:30 +00:00
- goarch: arm
goos: windows
2020-12-18 07:23:47 +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-08-17 00:14:32 +00:00
goversion: 1.17
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-08-17 00:14:32 +00:00
goversion: 1.17
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 }}"