seaweedfs/.github/workflows/binaries_dev.yml

78 lines
2.3 KiB
YAML
Raw Normal View History

2021-08-29 03:12:30 +00:00
name: "go: build dev binaries"
on:
push:
branches: [ master ]
jobs:
2021-09-07 01:39:29 +00: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 05:54:29 +00:00
build_dev:
needs: cleanup
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: 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
2021-09-07 06:11:59 +00:00
- name: Go Release Binaries Large Disk
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
2021-09-07 06:44:08 +00:00
binary_name: weed-large-disk
2021-02-19 10:40:30 +00:00
asset_name: "weed-large-disk-${{ env.BUILD_TIME }}-${{ matrix.goos }}-${{ matrix.goarch }}"
2021-09-07 06:11:59 +00:00
- name: Go Release Binaries Normal Volume Size
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-09-07 06:44:08 +00:00
binary_name: weed-normal-disk
2021-02-19 10:40:30 +00:00
asset_name: "weed-${{ env.BUILD_TIME }}-${{ matrix.goos }}-${{ matrix.goarch }}"