Skip to content
Open
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
17 changes: 14 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,25 @@ jobs:
tar -zcvf "spoofdpi-$GOOS-$GOARCH.tar.gz" ./spoofdpi && rm -rf ./spoofdpi
gh release upload $TAG_NAME "./spoofdpi-$GOOS-$GOARCH.tar.gz"

- name: linux/mipsle
- name: linux/mipsle-hardfloat
env:
GOOS: linux
GOARCH: mipsle
run: |
go build -ldflags="-w -s" github.com/xvzc/SpoofDPI/cmd/spoofdpi
tar -zcvf "spoofdpi-$GOOS-$GOARCH.tar.gz" ./spoofdpi && rm -rf ./spoofdpi
gh release upload $TAG_NAME "./spoofdpi-$GOOS-$GOARCH.tar.gz"
tar -zcvf "spoofdpi-$GOOS-$GOARCH-hardfloat.tar.gz" ./spoofdpi && rm -rf ./spoofdpi
gh release upload $TAG_NAME "./spoofdpi-$GOOS-$GOARCH-hardfloat.tar.gz"

- name: linux/mipsle-softfloat
env:
GOOS: linux
GOARCH: mipsle
GOMIPS: softfloat
run: |
go build -ldflags="-w -s" github.com/xvzc/SpoofDPI/cmd/spoofdpi
tar -zcvf "spoofdpi-$GOOS-$GOARCH-softfloat.tar.gz" ./spoofdpi && rm -rf ./spoofdpi
gh release upload $TAG_NAME "./spoofdpi-$GOOS-$GOARCH-softfloat.tar.gz"


- name: windows/amd64
env:
Expand Down
7 changes: 5 additions & 2 deletions _docs/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,11 @@ curl -fsSL https://raw.githubusercontent.com/xvzc/SpoofDPI/main/install.sh | bas
# linux-mips
curl -fsSL https://raw.githubusercontent.com/xvzc/SpoofDPI/main/install.sh | bash -s linux-mips

# linux-mipsle
curl -fsSL https://raw.githubusercontent.com/xvzc/SpoofDPI/main/install.sh | bash -s linux-mipsle
# linux-mipsle-hardfloat
curl -fsSL https://raw.githubusercontent.com/xvzc/SpoofDPI/main/install.sh | bash -s linux-mipsle-hardfloat

# linux-mipsle-softfloat
curl -fsSL https://raw.githubusercontent.com/xvzc/SpoofDPI/main/install.sh | bash -s linux-mipsle-softfloat
```

## Go
Expand Down