seaweedfs/.github/workflows/binaries_dev.yml

69 lines
2.1 KiB
YAML
Raw Normal View History

2021-08-29 03:12:30 +00:00
name: "go: 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:
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
- goarch: arm
goos: windows
2021-08-23 19:52:18 +00:00
- goarch: arm64
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
2021-02-19 10:40:30 +00:00
with:
2021-09-07 01:37:57 +00:00
time: '60s'
2021-02-19 10:40:30 +00:00
- 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-08-28 07:41:34 +00:00
uses: wangyoucao577/go-release-action@v1.20
2021-02-19 10:40:30 +00:00
with:
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-08-28 07:41:34 +00:00
uses: wangyoucao577/go-release-action@v1.20
2021-02-19 10:40:30 +00:00
with:
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 }}"