mirror of
https://github.com/oneclickvirt/backtrace.git
synced 2025-02-23 09:25:40 +08:00
109 lines
2.8 KiB
YAML
109 lines
2.8 KiB
YAML
![]() |
name: Release
|
||
|
|
||
|
on:
|
||
|
release:
|
||
|
types: [published]
|
||
|
|
||
|
jobs:
|
||
|
releases-matrix:
|
||
|
name: Release Go Binary
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
matrix:
|
||
|
# Include amd64 on all platforms.
|
||
|
goos: [windows, freebsd, openbsd, linux, dragonfly, darwin]
|
||
|
goarch: [amd64, 386]
|
||
|
exclude:
|
||
|
# Exclude i386 on darwin and dragonfly.
|
||
|
- goarch: 386
|
||
|
goos: dragonfly
|
||
|
- goarch: 386
|
||
|
goos: darwin
|
||
|
include:
|
||
|
# BEIGIN MacOS ARM64
|
||
|
- goos: darwin
|
||
|
goarch: arm64
|
||
|
# END macOS ARM64
|
||
|
# BEGIN Linux ARM 5 6 7
|
||
|
- goos: linux
|
||
|
goarch: arm
|
||
|
goarm: 7
|
||
|
- goos: linux
|
||
|
goarch: arm
|
||
|
goarm: 6
|
||
|
- goos: linux
|
||
|
goarch: arm
|
||
|
goarm: 5
|
||
|
# END Linux ARM 5 6 7
|
||
|
# BEGIN Android ARM 8
|
||
|
- goos: android
|
||
|
goarch: arm64
|
||
|
# END Android ARM 8
|
||
|
# Windows ARM
|
||
|
- goos: windows
|
||
|
goarch: arm64
|
||
|
- goos: windows
|
||
|
goarch: arm
|
||
|
goarm: 7
|
||
|
# BEGIN Other architectures
|
||
|
# BEGIN riscv64 & ARM64
|
||
|
- goos: linux
|
||
|
goarch: arm64
|
||
|
- goos: linux
|
||
|
goarch: riscv64
|
||
|
# END riscv64 & ARM64
|
||
|
# BEGIN MIPS
|
||
|
- goos: linux
|
||
|
goarch: mips64
|
||
|
- goos: linux
|
||
|
goarch: mips64le
|
||
|
- goos: linux
|
||
|
goarch: mipsle
|
||
|
- goos: linux
|
||
|
goarch: mips
|
||
|
- goos: linux
|
||
|
goarch: mipsle
|
||
|
gomips: softfloat
|
||
|
- goos: linux
|
||
|
goarch: mips
|
||
|
gomips: softfloat
|
||
|
# END MIPS
|
||
|
# BEGIN PPC
|
||
|
- goos: linux
|
||
|
goarch: ppc64
|
||
|
- goos: linux
|
||
|
goarch: ppc64le
|
||
|
# END PPC
|
||
|
# BEGIN FreeBSD ARM
|
||
|
- goos: freebsd
|
||
|
goarch: arm64
|
||
|
- goos: freebsd
|
||
|
goarch: arm
|
||
|
goarm: 7
|
||
|
# END FreeBSD ARM
|
||
|
# BEGIN S390X
|
||
|
- goos: linux
|
||
|
goarch: s390x
|
||
|
# END S390X
|
||
|
# END Other architectures
|
||
|
# BEGIN OPENBSD ARM
|
||
|
- goos: openbsd
|
||
|
goarch: arm64
|
||
|
- goos: openbsd
|
||
|
goarch: arm
|
||
|
goarm: 7
|
||
|
env:
|
||
|
GOOS: ${{ matrix.goos }}
|
||
|
GOARCH: ${{ matrix.goarch }}
|
||
|
GOARM: ${{ matrix.goarm }}
|
||
|
GOMIPS: ${{ matrix.gomips }}
|
||
|
CGO_ENABLED: 0
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- uses: wangyoucao577/go-release-action@v1
|
||
|
with:
|
||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||
|
goos: ${{ matrix.goos }}
|
||
|
goarch: ${{ matrix.goarch }}
|
||
|
asset_name: backtrace-${{ matrix.goos }}-${{ matrix.goarch }}
|
||
|
ldflags: -s -w
|