2022-07-09 01:02:06 +00:00
|
|
|
name: Debug build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2023-10-30 04:36:03 +00:00
|
|
|
- stable-next
|
2022-12-03 09:03:04 +00:00
|
|
|
- main-next
|
2022-08-31 15:45:30 +00:00
|
|
|
- dev-next
|
2022-07-09 01:02:06 +00:00
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
- '.github/**'
|
|
|
|
- '!.github/workflows/debug.yml'
|
|
|
|
pull_request:
|
|
|
|
branches:
|
2023-10-30 04:36:03 +00:00
|
|
|
- stable-next
|
2022-12-03 09:03:04 +00:00
|
|
|
- main-next
|
2022-08-31 15:45:30 +00:00
|
|
|
- dev-next
|
2022-07-09 01:02:06 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Debug build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2024-06-16 10:19:54 +00:00
|
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
2022-07-09 01:02:06 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Go
|
2023-12-12 14:07:50 +00:00
|
|
|
uses: actions/setup-go@v5
|
2022-07-09 01:02:06 +00:00
|
|
|
with:
|
2024-02-07 06:11:20 +00:00
|
|
|
go-version: ^1.22
|
2022-08-12 14:53:46 +00:00
|
|
|
continue-on-error: true
|
2022-07-09 01:02:06 +00:00
|
|
|
- name: Run Test
|
|
|
|
run: |
|
2022-07-17 01:11:23 +00:00
|
|
|
go test -v ./...
|
2022-10-21 03:54:44 +00:00
|
|
|
build_go118:
|
|
|
|
name: Debug build (Go 1.18)
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2024-04-26 12:47:11 +00:00
|
|
|
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
|
2022-10-21 03:54:44 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Go
|
2023-12-12 14:07:50 +00:00
|
|
|
uses: actions/setup-go@v5
|
2022-10-21 03:54:44 +00:00
|
|
|
with:
|
2024-01-24 04:13:12 +00:00
|
|
|
go-version: ~1.18
|
2022-10-21 03:54:44 +00:00
|
|
|
- name: Cache go module
|
2024-01-23 10:35:18 +00:00
|
|
|
uses: actions/cache@v4
|
2022-10-21 03:54:44 +00:00
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/go/pkg/mod
|
|
|
|
key: go118-${{ hashFiles('**/go.sum') }}
|
|
|
|
- name: Run Test
|
2023-08-11 07:44:04 +00:00
|
|
|
run: make ci_build_go118
|
|
|
|
build_go120:
|
|
|
|
name: Debug build (Go 1.20)
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2024-06-16 10:19:54 +00:00
|
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
2023-08-11 07:44:04 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Go
|
2023-12-12 14:07:50 +00:00
|
|
|
uses: actions/setup-go@v5
|
2023-08-11 07:44:04 +00:00
|
|
|
with:
|
2024-02-07 06:11:20 +00:00
|
|
|
go-version: ~1.20
|
2023-08-11 07:44:04 +00:00
|
|
|
- name: Cache go module
|
2024-01-23 10:35:18 +00:00
|
|
|
uses: actions/cache@v4
|
2023-08-11 07:44:04 +00:00
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/go/pkg/mod
|
2024-01-24 04:13:12 +00:00
|
|
|
key: go120-${{ hashFiles('**/go.sum') }}
|
2023-08-11 07:44:04 +00:00
|
|
|
- name: Run Test
|
2024-02-10 04:01:09 +00:00
|
|
|
run: make ci_build_go120
|
2024-02-07 06:11:20 +00:00
|
|
|
build_go121:
|
|
|
|
name: Debug build (Go 1.21)
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2024-06-16 10:19:54 +00:00
|
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
2024-02-07 06:11:20 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Go
|
|
|
|
uses: actions/setup-go@v5
|
|
|
|
with:
|
|
|
|
go-version: ~1.21
|
|
|
|
- name: Cache go module
|
|
|
|
uses: actions/cache@v4
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/go/pkg/mod
|
|
|
|
key: go121-${{ hashFiles('**/go.sum') }}
|
|
|
|
- name: Run Test
|
|
|
|
run: make ci_build
|
2022-07-17 01:47:04 +00:00
|
|
|
cross:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
# windows
|
|
|
|
- name: windows-amd64
|
|
|
|
goos: windows
|
|
|
|
goarch: amd64
|
|
|
|
goamd64: v1
|
|
|
|
- name: windows-amd64-v3
|
|
|
|
goos: windows
|
|
|
|
goarch: amd64
|
|
|
|
goamd64: v3
|
|
|
|
- name: windows-386
|
|
|
|
goos: windows
|
|
|
|
goarch: 386
|
|
|
|
- name: windows-arm64
|
|
|
|
goos: windows
|
|
|
|
goarch: arm64
|
|
|
|
- name: windows-arm32v7
|
|
|
|
goos: windows
|
|
|
|
goarch: arm
|
|
|
|
goarm: 7
|
|
|
|
|
|
|
|
# linux
|
|
|
|
- name: linux-amd64
|
|
|
|
goos: linux
|
|
|
|
goarch: amd64
|
|
|
|
goamd64: v1
|
|
|
|
- name: linux-amd64-v3
|
|
|
|
goos: linux
|
|
|
|
goarch: amd64
|
|
|
|
goamd64: v3
|
|
|
|
- name: linux-386
|
|
|
|
goos: linux
|
|
|
|
goarch: 386
|
|
|
|
- name: linux-arm64
|
|
|
|
goos: linux
|
|
|
|
goarch: arm64
|
|
|
|
- name: linux-armv5
|
|
|
|
goos: linux
|
|
|
|
goarch: arm
|
|
|
|
goarm: 5
|
|
|
|
- name: linux-armv6
|
|
|
|
goos: linux
|
|
|
|
goarch: arm
|
|
|
|
goarm: 6
|
|
|
|
- name: linux-armv7
|
|
|
|
goos: linux
|
|
|
|
goarch: arm
|
|
|
|
goarm: 7
|
|
|
|
- name: linux-mips-softfloat
|
|
|
|
goos: linux
|
|
|
|
goarch: mips
|
|
|
|
gomips: softfloat
|
|
|
|
- name: linux-mips-hardfloat
|
|
|
|
goos: linux
|
|
|
|
goarch: mips
|
|
|
|
gomips: hardfloat
|
|
|
|
- name: linux-mipsel-softfloat
|
|
|
|
goos: linux
|
|
|
|
goarch: mipsle
|
|
|
|
gomips: softfloat
|
|
|
|
- name: linux-mipsel-hardfloat
|
|
|
|
goos: linux
|
|
|
|
goarch: mipsle
|
|
|
|
gomips: hardfloat
|
|
|
|
- name: linux-mips64
|
|
|
|
goos: linux
|
|
|
|
goarch: mips64
|
|
|
|
- name: linux-mips64el
|
|
|
|
goos: linux
|
|
|
|
goarch: mips64le
|
2022-10-26 11:29:27 +00:00
|
|
|
- name: linux-s390x
|
|
|
|
goos: linux
|
|
|
|
goarch: s390x
|
2022-07-17 01:47:04 +00:00
|
|
|
# darwin
|
|
|
|
- name: darwin-amd64
|
|
|
|
goos: darwin
|
|
|
|
goarch: amd64
|
|
|
|
goamd64: v1
|
|
|
|
- name: darwin-amd64-v3
|
|
|
|
goos: darwin
|
|
|
|
goarch: amd64
|
|
|
|
goamd64: v3
|
|
|
|
- name: darwin-arm64
|
|
|
|
goos: darwin
|
|
|
|
goarch: arm64
|
|
|
|
# freebsd
|
|
|
|
- name: freebsd-amd64
|
|
|
|
goos: freebsd
|
|
|
|
goarch: amd64
|
|
|
|
goamd64: v1
|
|
|
|
- name: freebsd-amd64-v3
|
|
|
|
goos: freebsd
|
|
|
|
goarch: amd64
|
|
|
|
goamd64: v3
|
|
|
|
- name: freebsd-386
|
|
|
|
goos: freebsd
|
|
|
|
goarch: 386
|
|
|
|
- name: freebsd-arm64
|
|
|
|
goos: freebsd
|
|
|
|
goarch: arm64
|
2024-01-24 04:13:12 +00:00
|
|
|
fail-fast: true
|
2022-07-17 01:47:04 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
GOOS: ${{ matrix.goos }}
|
|
|
|
GOARCH: ${{ matrix.goarch }}
|
|
|
|
GOAMD64: ${{ matrix.goamd64 }}
|
|
|
|
GOARM: ${{ matrix.goarm }}
|
|
|
|
GOMIPS: ${{ matrix.gomips }}
|
|
|
|
CGO_ENABLED: 0
|
2022-08-12 14:53:46 +00:00
|
|
|
TAGS: with_clash_api,with_quic
|
2022-07-17 01:47:04 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2024-06-16 10:19:54 +00:00
|
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
2022-07-17 01:47:04 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Go
|
2023-12-12 14:07:50 +00:00
|
|
|
uses: actions/setup-go@v5
|
2022-07-17 01:47:04 +00:00
|
|
|
with:
|
2024-01-24 04:13:12 +00:00
|
|
|
go-version: ^1.21
|
2022-07-17 01:47:04 +00:00
|
|
|
- name: Build
|
|
|
|
id: build
|
2024-01-24 04:13:12 +00:00
|
|
|
run: make
|