mirror of
https://github.com/fatedier/frp.git
synced 2025-06-17 17:18:21 +00:00
Compare commits
3 Commits
d26c248305
...
38fee20ed5
Author | SHA1 | Date | |
---|---|---|---|
|
38fee20ed5 | ||
|
2626d6ed92 | ||
|
b4474ec619 |
20
Makefile
20
Makefile
@ -2,40 +2,52 @@ export PATH := $(PATH):`go env GOPATH`/bin
|
|||||||
export GO111MODULE=on
|
export GO111MODULE=on
|
||||||
LDFLAGS := -s -w
|
LDFLAGS := -s -w
|
||||||
|
|
||||||
|
.PHONY: all
|
||||||
all: env fmt build
|
all: env fmt build
|
||||||
|
|
||||||
|
.PHONY: build
|
||||||
build: frps frpc
|
build: frps frpc
|
||||||
|
|
||||||
|
.PHONY: env
|
||||||
env:
|
env:
|
||||||
@go version
|
@go version
|
||||||
|
|
||||||
# compile assets into binary file
|
# compile assets into binary file
|
||||||
|
.PHONY: file
|
||||||
file:
|
file:
|
||||||
rm -rf ./assets/frps/static/*
|
rm -rf ./assets/frps/static/*
|
||||||
rm -rf ./assets/frpc/static/*
|
rm -rf ./assets/frpc/static/*
|
||||||
cp -rf ./web/frps/dist/* ./assets/frps/static
|
cp -rf ./web/frps/dist/* ./assets/frps/static
|
||||||
cp -rf ./web/frpc/dist/* ./assets/frpc/static
|
cp -rf ./web/frpc/dist/* ./assets/frpc/static
|
||||||
|
|
||||||
|
.PHONY: fmt
|
||||||
fmt:
|
fmt:
|
||||||
go fmt ./...
|
go fmt ./...
|
||||||
|
|
||||||
|
.PHONY: fmt-more
|
||||||
fmt-more:
|
fmt-more:
|
||||||
gofumpt -l -w .
|
gofumpt -l -w .
|
||||||
|
|
||||||
|
.PHONY: gci
|
||||||
gci:
|
gci:
|
||||||
gci write -s standard -s default -s "prefix(github.com/fatedier/frp/)" ./
|
gci write -s standard -s default -s "prefix(github.com/fatedier/frp/)" ./
|
||||||
|
|
||||||
|
.PHONY: vet
|
||||||
vet:
|
vet:
|
||||||
go vet ./...
|
go vet ./...
|
||||||
|
|
||||||
|
.PHONY: frps
|
||||||
frps:
|
frps:
|
||||||
env CGO_ENABLED=0 go build -trimpath -ldflags "$(LDFLAGS)" -tags frps -o bin/frps ./cmd/frps
|
env CGO_ENABLED=0 go build -trimpath -ldflags "$(LDFLAGS)" -tags frps -o bin/frps ./cmd/frps
|
||||||
|
|
||||||
|
.PHONY: frpc
|
||||||
frpc:
|
frpc:
|
||||||
env CGO_ENABLED=0 go build -trimpath -ldflags "$(LDFLAGS)" -tags frpc -o bin/frpc ./cmd/frpc
|
env CGO_ENABLED=0 go build -trimpath -ldflags "$(LDFLAGS)" -tags frpc -o bin/frpc ./cmd/frpc
|
||||||
|
|
||||||
|
.PHONY: test
|
||||||
test: gotest
|
test: gotest
|
||||||
|
|
||||||
|
.PHONY: gotest
|
||||||
gotest:
|
gotest:
|
||||||
go test -v --cover ./assets/...
|
go test -v --cover ./assets/...
|
||||||
go test -v --cover ./cmd/...
|
go test -v --cover ./cmd/...
|
||||||
@ -43,12 +55,15 @@ gotest:
|
|||||||
go test -v --cover ./server/...
|
go test -v --cover ./server/...
|
||||||
go test -v --cover ./pkg/...
|
go test -v --cover ./pkg/...
|
||||||
|
|
||||||
|
.PHONY: e2e
|
||||||
e2e:
|
e2e:
|
||||||
./hack/run-e2e.sh
|
./hack/run-e2e.sh
|
||||||
|
|
||||||
|
.PHONY: e2e-trace
|
||||||
e2e-trace:
|
e2e-trace:
|
||||||
DEBUG=true LOG_LEVEL=trace ./hack/run-e2e.sh
|
DEBUG=true LOG_LEVEL=trace ./hack/run-e2e.sh
|
||||||
|
|
||||||
|
.PHONY: e2e-compatibility-last-frpc
|
||||||
e2e-compatibility-last-frpc:
|
e2e-compatibility-last-frpc:
|
||||||
if [ ! -d "./lastversion" ]; then \
|
if [ ! -d "./lastversion" ]; then \
|
||||||
TARGET_DIRNAME=lastversion ./hack/download.sh; \
|
TARGET_DIRNAME=lastversion ./hack/download.sh; \
|
||||||
@ -56,6 +71,7 @@ e2e-compatibility-last-frpc:
|
|||||||
FRPC_PATH="`pwd`/lastversion/frpc" ./hack/run-e2e.sh
|
FRPC_PATH="`pwd`/lastversion/frpc" ./hack/run-e2e.sh
|
||||||
rm -r ./lastversion
|
rm -r ./lastversion
|
||||||
|
|
||||||
|
.PHONY: e2e-compatibility-last-frps
|
||||||
e2e-compatibility-last-frps:
|
e2e-compatibility-last-frps:
|
||||||
if [ ! -d "./lastversion" ]; then \
|
if [ ! -d "./lastversion" ]; then \
|
||||||
TARGET_DIRNAME=lastversion ./hack/download.sh; \
|
TARGET_DIRNAME=lastversion ./hack/download.sh; \
|
||||||
@ -63,8 +79,10 @@ e2e-compatibility-last-frps:
|
|||||||
FRPS_PATH="`pwd`/lastversion/frps" ./hack/run-e2e.sh
|
FRPS_PATH="`pwd`/lastversion/frps" ./hack/run-e2e.sh
|
||||||
rm -r ./lastversion
|
rm -r ./lastversion
|
||||||
|
|
||||||
|
.PHONY: alltest
|
||||||
alltest: vet gotest e2e
|
alltest: vet gotest e2e
|
||||||
|
|
||||||
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
rm -f ./bin/frpc
|
rm -f ./bin/frpc
|
||||||
rm -f ./bin/frps
|
rm -f ./bin/frps
|
||||||
|
@ -2,22 +2,29 @@ export PATH := $(PATH):`go env GOPATH`/bin
|
|||||||
export GO111MODULE=on
|
export GO111MODULE=on
|
||||||
LDFLAGS := -s -w
|
LDFLAGS := -s -w
|
||||||
|
|
||||||
os-archs=darwin:amd64 darwin:arm64 freebsd:amd64 linux:amd64 linux:arm linux:arm64 windows:amd64 windows:arm64 linux:mips64 linux:mips64le linux:mips:softfloat linux:mipsle:softfloat linux:riscv64 android:arm64
|
os-archs=darwin:amd64 darwin:arm64 freebsd:amd64 linux:amd64 linux:arm linux:arm:6 linux:arm64 windows:amd64 windows:arm64 linux:mips64 linux:mips64le linux:mips:softfloat linux:mipsle:softfloat linux:riscv64 android:arm64
|
||||||
|
|
||||||
all: build
|
all: build
|
||||||
|
|
||||||
build: app
|
build: app
|
||||||
|
|
||||||
app:
|
app:
|
||||||
@$(foreach n, $(os-archs),\
|
@$(foreach n, $(os-archs), \
|
||||||
os=$(shell echo "$(n)" | cut -d : -f 1);\
|
os=$(shell echo "$(n)" | cut -d : -f 1); \
|
||||||
arch=$(shell echo "$(n)" | cut -d : -f 2);\
|
arch=$(shell echo "$(n)" | cut -d : -f 2); \
|
||||||
gomips=$(shell echo "$(n)" | cut -d : -f 3);\
|
extra=$(shell echo "$(n)" | cut -d : -f 3); \
|
||||||
target_suffix=$${os}_$${arch};\
|
flags=''; \
|
||||||
echo "Build $${os}-$${arch}...";\
|
target_suffix=$${os}_$${arch}; \
|
||||||
env CGO_ENABLED=0 GOOS=$${os} GOARCH=$${arch} GOMIPS=$${gomips} go build -trimpath -ldflags "$(LDFLAGS)" -tags frpc -o ./release/frpc_$${target_suffix} ./cmd/frpc;\
|
if [ "$${os}" = "linux" ] && [ "$${arch}" = "arm" ] && [ "$${extra}" != "" ] ; then \
|
||||||
env CGO_ENABLED=0 GOOS=$${os} GOARCH=$${arch} GOMIPS=$${gomips} go build -trimpath -ldflags "$(LDFLAGS)" -tags frps -o ./release/frps_$${target_suffix} ./cmd/frps;\
|
flags=GOARM=$${extra}; \
|
||||||
echo "Build $${os}-$${arch} done";\
|
target_suffix=$${os}_$${arch}_$${extra}; \
|
||||||
|
elif [ "$${os}" = "linux" ] && [ "$${arch}" = "mips" ] && [ "$${extra}" != "" ] ; then \
|
||||||
|
flags=GOMIPS=$${extra}; \
|
||||||
|
fi; \
|
||||||
|
echo "Build $${os}-$${arch}$${extra:+ ($${extra})}..."; \
|
||||||
|
env CGO_ENABLED=0 GOOS=$${os} GOARCH=$${arch} $${flags} go build -trimpath -ldflags "$(LDFLAGS)" -tags frpc -o ./release/frpc_$${target_suffix} ./cmd/frpc; \
|
||||||
|
env CGO_ENABLED=0 GOOS=$${os} GOARCH=$${arch} $${flags} go build -trimpath -ldflags "$(LDFLAGS)" -tags frps -o ./release/frps_$${target_suffix} ./cmd/frps; \
|
||||||
|
echo "Build $${os}-$${arch}$${extra:+ ($${extra})} done"; \
|
||||||
)
|
)
|
||||||
@mv ./release/frpc_windows_amd64 ./release/frpc_windows_amd64.exe
|
@mv ./release/frpc_windows_amd64 ./release/frpc_windows_amd64.exe
|
||||||
@mv ./release/frps_windows_amd64 ./release/frps_windows_amd64.exe
|
@mv ./release/frps_windows_amd64 ./release/frps_windows_amd64.exe
|
||||||
|
77
package.sh
77
package.sh
@ -19,48 +19,55 @@ mkdir -p ./release/packages
|
|||||||
|
|
||||||
os_all='linux windows darwin freebsd android'
|
os_all='linux windows darwin freebsd android'
|
||||||
arch_all='386 amd64 arm arm64 mips64 mips64le mips mipsle riscv64'
|
arch_all='386 amd64 arm arm64 mips64 mips64le mips mipsle riscv64'
|
||||||
|
extra_all='_ 6'
|
||||||
|
|
||||||
cd ./release
|
cd ./release
|
||||||
|
|
||||||
for os in $os_all; do
|
for os in $os_all; do
|
||||||
for arch in $arch_all; do
|
for arch in $arch_all; do
|
||||||
frp_dir_name="frp_${frp_version}_${os}_${arch}"
|
for extra in $extra_all; do
|
||||||
frp_path="./packages/frp_${frp_version}_${os}_${arch}"
|
suffix="${os}_${arch}"
|
||||||
|
if [ "x${extra}" != x"_" ]; then
|
||||||
|
suffix="${os}_${arch}_${extra}"
|
||||||
|
fi
|
||||||
|
frp_dir_name="frp_${frp_version}_${suffix}"
|
||||||
|
frp_path="./packages/frp_${frp_version}_${suffix}"
|
||||||
|
|
||||||
if [ "x${os}" = x"windows" ]; then
|
if [ "x${os}" = x"windows" ]; then
|
||||||
if [ ! -f "./frpc_${os}_${arch}.exe" ]; then
|
if [ ! -f "./frpc_${os}_${arch}.exe" ]; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
if [ ! -f "./frps_${os}_${arch}.exe" ]; then
|
if [ ! -f "./frps_${os}_${arch}.exe" ]; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
mkdir ${frp_path}
|
mkdir ${frp_path}
|
||||||
mv ./frpc_${os}_${arch}.exe ${frp_path}/frpc.exe
|
mv ./frpc_${os}_${arch}.exe ${frp_path}/frpc.exe
|
||||||
mv ./frps_${os}_${arch}.exe ${frp_path}/frps.exe
|
mv ./frps_${os}_${arch}.exe ${frp_path}/frps.exe
|
||||||
else
|
else
|
||||||
if [ ! -f "./frpc_${os}_${arch}" ]; then
|
if [ ! -f "./frpc_${suffix}" ]; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
if [ ! -f "./frps_${os}_${arch}" ]; then
|
if [ ! -f "./frps_${suffix}" ]; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
mkdir ${frp_path}
|
mkdir ${frp_path}
|
||||||
mv ./frpc_${os}_${arch} ${frp_path}/frpc
|
mv ./frpc_${suffix} ${frp_path}/frpc
|
||||||
mv ./frps_${os}_${arch} ${frp_path}/frps
|
mv ./frps_${suffix} ${frp_path}/frps
|
||||||
fi
|
fi
|
||||||
cp ../LICENSE ${frp_path}
|
cp ../LICENSE ${frp_path}
|
||||||
cp -f ../conf/frpc.toml ${frp_path}
|
cp -f ../conf/frpc.toml ${frp_path}
|
||||||
cp -f ../conf/frps.toml ${frp_path}
|
cp -f ../conf/frps.toml ${frp_path}
|
||||||
|
|
||||||
# packages
|
# packages
|
||||||
cd ./packages
|
cd ./packages
|
||||||
if [ "x${os}" = x"windows" ]; then
|
if [ "x${os}" = x"windows" ]; then
|
||||||
zip -rq ${frp_dir_name}.zip ${frp_dir_name}
|
zip -rq ${frp_dir_name}.zip ${frp_dir_name}
|
||||||
else
|
else
|
||||||
tar -zcf ${frp_dir_name}.tar.gz ${frp_dir_name}
|
tar -zcf ${frp_dir_name}.tar.gz ${frp_dir_name}
|
||||||
fi
|
fi
|
||||||
cd ..
|
cd ..
|
||||||
rm -rf ${frp_path}
|
rm -rf ${frp_path}
|
||||||
|
done
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user