mirror of
https://github.com/Mrs4s/go-cqhttp.git
synced 2025-05-11 22:25:44 +08:00
* Update CI workflow actions version * Update lint workflow actions version * Update release workflow actions version * Update Docker build workflow actions version * disable lint cache to prevent bugs * Update golinter action to latest * Update Go to 1.20 in CI workflow
51 lines
1.6 KiB
YAML
51 lines
1.6 KiB
YAML
name: CI
|
|
|
|
on: [push, pull_request,workflow_dispatch]
|
|
|
|
env:
|
|
BINARY_PREFIX: "go-cqhttp_"
|
|
BINARY_SUFFIX: ""
|
|
COMMIT_ID: "${{ github.sha }}"
|
|
PR_PROMPT: "::warning:: Build artifact will not be uploaded due to the workflow is trigged by pull request."
|
|
|
|
jobs:
|
|
build:
|
|
name: Build binary CI
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
# build and publish in parallel: linux/386, linux/amd64, windows/386, windows/amd64, darwin/amd64, darwin/arm64
|
|
goos: [linux, windows, darwin]
|
|
goarch: ["386", amd64, arm, arm64]
|
|
exclude:
|
|
- goos: darwin
|
|
goarch: arm
|
|
- goos: darwin
|
|
goarch: "386"
|
|
fail-fast: true
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Setup Go environment
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
cache: true
|
|
go-version: '1.20'
|
|
- name: Build binary file
|
|
env:
|
|
GOOS: ${{ matrix.goos }}
|
|
GOARCH: ${{ matrix.goarch }}
|
|
IS_PR: ${{ !!github.head_ref }}
|
|
run: |
|
|
if [ $GOOS = "windows" ]; then export BINARY_SUFFIX="$BINARY_SUFFIX.exe"; fi
|
|
if $IS_PR ; then echo $PR_PROMPT; fi
|
|
export BINARY_NAME="$BINARY_PREFIX"$GOOS"_$GOARCH$BINARY_SUFFIX"
|
|
export CGO_ENABLED=0
|
|
export LD_FLAGS="-w -s -X github.com/Mrs4s/go-cqhttp/internal/base.Version=${COMMIT_ID::7}"
|
|
go build -o "output/$BINARY_NAME" -trimpath -ldflags "$LD_FLAGS" .
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v3
|
|
if: ${{ !github.head_ref }}
|
|
with:
|
|
name: ${{ matrix.goos }}_${{ matrix.goarch }}
|
|
path: output/
|