Add debug workflow

This commit is contained in:
世界 2022-04-27 13:10:33 +08:00
parent 0a8e8d675f
commit 2cbdff60de
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 52 additions and 1 deletions

51
.github/workflows/debug.yml vendored Normal file
View file

@ -0,0 +1,51 @@
name: Debug build
on:
push:
branches:
- main
paths-ignore:
- '**.md'
- '.github/**'
- '!.github/workflows/debug.yml'
pull_request:
branches:
- main
jobs:
build:
name: Debug build
runs-on: ubuntu-latest
strategy:
matrix:
goos: [ windows, linux, darwin ]
goarch: [ amd64, 386 ]
exclude:
- goarch: 386
goos: darwin
include:
- goos: darwin
goarch: arm64
- goos: linux
goarch: arm64
- goos: windows
goarch: arm64
- goos: android
goarch: arm64
fail-fast: false
env:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
GOARM: ${{ matrix.goarm }}
CGO_ENABLED: 0
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install Golang
uses: actions/setup-go@v2
with:
go-version: 1.18.1
- name: Build
run: go build -v ./cli/ss-local