1
0
Fork 0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-03-20 22:43:33 +02:00

Add background-working Xray to windows release version. ()

* Add wxray.

* Add wxray.exe into windows release version.

* Pretty the format on building wxray.
This commit is contained in:
Johnshall 2022-02-20 11:22:12 +08:00 committed by GitHub
parent b3ab94ef5b
commit cf1ee095a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -143,6 +143,11 @@ jobs:
mkdir -p build_assets mkdir -p build_assets
go build -v -o build_assets/xray -trimpath -ldflags "-s -w -buildid=" ./main go build -v -o build_assets/xray -trimpath -ldflags "-s -w -buildid=" ./main
- name: Build background Xray on Windows
if: matrix.goos == 'windows'
run: |
go build -v -o build_assets/wxray.exe -trimpath -ldflags "-s -w -H windowsgui -buildid=" ./main
- name: Build Mips softfloat Xray - name: Build Mips softfloat Xray
if: matrix.goarch == 'mips' || matrix.goarch == 'mipsle' if: matrix.goarch == 'mips' || matrix.goarch == 'mipsle'
run: | run: |