8000 feat: enable suo5 and neoreg as proxy by M09Ic · Pull Request #91 · zema1/suo5 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

feat: enable suo5 and neoreg as proxy #91

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- uses: actions/setup-go@v5
with:
go-version: '1.20'
- run: go build -trimpath -ldflags "-w -s -extldflags '-static' -X main.Version=${{ github.ref_name }}" -o target/${{ matrix.output }}
- run: go build -trimpath --tags "neoreg suo5" -ldflags "-w -s -extldflags '-static' -X main.Version=${{ github.ref_name }}" -o target/${{ matrix.output }}
- uses: actions/upload-artifact@v4
with:
name: target-binary-${{ matrix.os }}-${{ matrix.arch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- uses: actions/setup-go@v5
with:
go-version: '1.20'
- run: go build -trimpath -ldflags "-w -s -extldflags '-static'" -o suo5_test
- run: go build -trimpath --tags "neoreg suo5" -ldflags "-w -s -extldflags '-static'" -o suo5_test
- uses: actions/upload-artifact@v4
with:
name: test-target
Expand Down
1 change: 1 addition & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"os/signal"
"strings"

_ "github.com/chainreactors/proxyclient/extend"

Check failure on line 12 in main.go

View workflow job for this annotation

GitHub Actions / golangci-lint

could not import github.com/chainreactors/proxyclient/extend (-: build constraints exclude all Go files in /home/runner/go/pkg/mod/github.com/chainreactors/proxyclient@v1.0.2/extend) (typecheck)
log "github.com/kataras/golog"
"github.com/urfave/cli/v2"
"github.com/zema1/suo5/ctrl"
Expand Down
Loading
0