mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-16 02:42:23 +08:00
Drop support for go1.18 and go1.19
This commit is contained in:
parent
369bc7cea3
commit
d44e7d9834
20
.github/workflows/debug.yml
vendored
20
.github/workflows/debug.yml
vendored
|
@ -32,26 +32,6 @@ jobs:
|
||||||
- name: Run Test
|
- name: Run Test
|
||||||
run: |
|
run: |
|
||||||
go test -v ./...
|
go test -v ./...
|
||||||
build_go118:
|
|
||||||
name: Debug build (Go 1.18)
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
- name: Setup Go
|
|
||||||
uses: actions/setup-go@v5
|
|
||||||
with:
|
|
||||||
go-version: ~1.18
|
|
||||||
- name: Cache go module
|
|
||||||
uses: actions/cache@v4
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
~/go/pkg/mod
|
|
||||||
key: go118-${{ hashFiles('**/go.sum') }}
|
|
||||||
- name: Run Test
|
|
||||||
run: make ci_build_go118
|
|
||||||
build_go120:
|
build_go120:
|
||||||
name: Debug build (Go 1.20)
|
name: Debug build (Go 1.20)
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
9
Makefile
9
Makefile
|
@ -1,7 +1,6 @@
|
||||||
NAME = sing-box
|
NAME = sing-box
|
||||||
COMMIT = $(shell git rev-parse --short HEAD)
|
COMMIT = $(shell git rev-parse --short HEAD)
|
||||||
TAGS_GO118 = with_gvisor,with_dhcp,with_wireguard,with_reality_server,with_clash_api
|
TAGS_GO120 = with_gvisor,with_dhcp,with_wireguard,with_reality_server,with_clash_api,with_quic,with_utls
|
||||||
TAGS_GO120 = with_quic,with_utls
|
|
||||||
TAGS_GO121 = with_ech
|
TAGS_GO121 = with_ech
|
||||||
TAGS ?= $(TAGS_GO118),$(TAGS_GO120),$(TAGS_GO121)
|
TAGS ?= $(TAGS_GO118),$(TAGS_GO120),$(TAGS_GO121)
|
||||||
TAGS_TEST ?= with_gvisor,with_quic,with_wireguard,with_grpc,with_ech,with_utls,with_reality_server
|
TAGS_TEST ?= with_gvisor,with_quic,with_wireguard,with_grpc,with_ech,with_utls,with_reality_server
|
||||||
|
@ -20,13 +19,9 @@ PREFIX ?= $(shell go env GOPATH)
|
||||||
build:
|
build:
|
||||||
go build $(MAIN_PARAMS) $(MAIN)
|
go build $(MAIN_PARAMS) $(MAIN)
|
||||||
|
|
||||||
ci_build_go118:
|
|
||||||
go build $(PARAMS) $(MAIN)
|
|
||||||
go build $(PARAMS) -tags "$(TAGS_GO118)" $(MAIN)
|
|
||||||
|
|
||||||
ci_build_go120:
|
ci_build_go120:
|
||||||
go build $(PARAMS) $(MAIN)
|
go build $(PARAMS) $(MAIN)
|
||||||
go build $(PARAMS) -tags "$(TAGS_GO118),$(TAGS_GO120)" $(MAIN)
|
go build $(PARAMS) -tags "$(TAGS_GO120)" $(MAIN)
|
||||||
|
|
||||||
ci_build:
|
ci_build:
|
||||||
go build $(PARAMS) $(MAIN)
|
go build $(PARAMS) $(MAIN)
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
//go:build go1.19
|
|
||||||
|
|
||||||
package box
|
package box
|
||||||
|
|
||||||
import (
|
import (
|
|
@ -1,36 +0,0 @@
|
||||||
//go:build !go1.19
|
|
||||||
|
|
||||||
package box
|
|
||||||
|
|
||||||
import (
|
|
||||||
"runtime/debug"
|
|
||||||
|
|
||||||
"github.com/sagernet/sing-box/common/conntrack"
|
|
||||||
"github.com/sagernet/sing-box/option"
|
|
||||||
)
|
|
||||||
|
|
||||||
func applyDebugOptions(options option.DebugOptions) {
|
|
||||||
applyDebugListenOption(options)
|
|
||||||
if options.GCPercent != nil {
|
|
||||||
debug.SetGCPercent(*options.GCPercent)
|
|
||||||
}
|
|
||||||
if options.MaxStack != nil {
|
|
||||||
debug.SetMaxStack(*options.MaxStack)
|
|
||||||
}
|
|
||||||
if options.MaxThreads != nil {
|
|
||||||
debug.SetMaxThreads(*options.MaxThreads)
|
|
||||||
}
|
|
||||||
if options.PanicOnFault != nil {
|
|
||||||
debug.SetPanicOnFault(*options.PanicOnFault)
|
|
||||||
}
|
|
||||||
if options.TraceBack != "" {
|
|
||||||
debug.SetTraceback(options.TraceBack)
|
|
||||||
}
|
|
||||||
if options.MemoryLimit != 0 {
|
|
||||||
// debug.SetMemoryLimit(int64(options.MemoryLimit))
|
|
||||||
conntrack.MemoryLimit = uint64(options.MemoryLimit)
|
|
||||||
}
|
|
||||||
if options.OOMKiller != nil {
|
|
||||||
conntrack.KillerEnabled = *options.OOMKiller
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -4,6 +4,12 @@ icon: material/delete-alert
|
||||||
|
|
||||||
# Deprecated Feature List
|
# Deprecated Feature List
|
||||||
|
|
||||||
|
## 1.10.0
|
||||||
|
|
||||||
|
#### Drop support for go1.18 and go1.19
|
||||||
|
|
||||||
|
Due to maintenance difficulties, sing-box 1.10.0 requires at least Go 1.20 to compile.
|
||||||
|
|
||||||
## 1.8.0
|
## 1.8.0
|
||||||
|
|
||||||
#### Cache file and related features in Clash API
|
#### Cache file and related features in Clash API
|
||||||
|
|
|
@ -4,6 +4,12 @@ icon: material/delete-alert
|
||||||
|
|
||||||
# 废弃功能列表
|
# 废弃功能列表
|
||||||
|
|
||||||
|
## 1.10.0
|
||||||
|
|
||||||
|
#### 移除对 go1.18 和 go1.19 的支持
|
||||||
|
|
||||||
|
由于维护困难,sing-box 1.10.0 要求至少 Go 1.20 才能编译。
|
||||||
|
|
||||||
## 1.8.0
|
## 1.8.0
|
||||||
|
|
||||||
#### Clash API 中的 Cache file 及相关功能
|
#### Clash API 中的 Cache file 及相关功能
|
||||||
|
|
Loading…
Reference in New Issue
Block a user