ci: fix test build #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Source of v2rayA | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "**/*.go" | |
- "go.mod" | |
- "go.sum" | |
- "gui/**" | |
- ".github/workflows/*.yml" | |
jobs: | |
Build_v2rayA_Web: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: 'yarn' | |
cache-dependency-path: gui/yarn.lock | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update -y && sudo apt-get install -y gzip | |
- name: Build GUI | |
run: | | |
yarn --cwd gui --check-files | |
yarn --cwd gui build | |
echo "Use tar to generate web.tar.gz..." | |
tar -zcvf web.tar.gz web/ | |
- name: Upload Zip File to Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
path: web/* | |
name: web | |
Build_v2rayA_Binaries: | |
runs-on: ubuntu-latest | |
needs: [Build_v2rayA_Web] | |
env: | |
CGO_ENABLED: 0 | |
NAME: v2raya | |
DESC: "A web GUI client of Project V which supports VMess, VLESS, SS, SSR, Trojan, Tuic and Juicity protocols" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Download Artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: web | |
path: service/server/router/web | |
- name: Check Version | |
id: prep | |
env: | |
REF: ${{ inputs.tag }} | |
run: | | |
version=${REF} | |
echo "VERSION=$version" >> $GITHUB_OUTPUT | |
echo "VERSION=$version" >> $GITHUB_ENV | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
cache-dependency-path: | | |
service/go.mod | |
service/go.sum | |
go-version: ^1.21 | |
- name: Build v2rayA Binaries | |
id: build | |
shell: pwsh | |
run: | | |
New-Item -ItemType Directory -Path v2raya_binaries | |
foreach ($arch in @('amd64', 'arm64', '386', 'riscv64', 'mips64', 'mips64le', 'mipsle', 'mips', 'loong64')) { | |
$env:GOARCH = $arch | |
$filename = $((Get-Content ./install/friendly-filenames.json | ConvertFrom-Json)."linux-$arch")."friendlyName" | |
Set-Location -Path service | |
go build -o ../v2raya_binaries/v2raya_${filename}_${env:VERSION} -ldflags="-X github.com/v2rayA/v2rayA/conf.Version=${env:VERSION} -s -w" -trimpath | |
Set-Location -Path .. | |
} | |
foreach ($arm in @('7')) { | |
$env:GOARCH = 'arm' | |
$env:GOARM = $arm | |
$filename = $((Get-Content ./install/friendly-filenames.json | ConvertFrom-Json)."linux-arm$arm")."friendlyName" | |
Set-Location -Path service | |
go build -o ../v2raya_binaries/v2raya_${filename}_${env:VERSION} -ldflags="-X github.com/v2rayA/v2rayA/conf.Version=${env:VERSION} -s -w" -trimpath | |
Set-Location -Path .. | |
} | |
foreach ($arch in @('amd64', 'arm64')) { | |
$env:GOOS = 'windows' | |
$env:GOARCH = $arch | |
$filename = $((Get-Content ./install/friendly-filenames.json | ConvertFrom-Json)."windows-$arch")."friendlyName" | |
Set-Location -Path service | |
go build -o ../v2raya_binaries/v2raya_${filename}_${env:VERSION}.exe -ldflags="-X github.com/v2rayA/v2rayA/conf.Version=${env:VERSION} -s -w" -trimpath | |
Set-Location -Path .. | |
} | |
foreach ($arch in @('amd64', 'arm64')) { | |
$env:GOOS = 'darwin' | |
$env:GOARCH = $arch | |
$filename = $((Get-Content ./install/friendly-filenames.json | ConvertFrom-Json)."darwin-$arch")."friendlyName" | |
Set-Location -Path service | |
go build -o ../v2raya_binaries/v2raya_${filename}_${env:VERSION} -ldflags="-X github.com/v2rayA/v2rayA/conf.Version=${env:VERSION} -s -w" -trimpath | |
Set-Location -Path .. | |
} | |
foreach ($arch in @('amd64', 'arm64')) { | |
$env:GOOS = 'freebsd' | |
$env:GOARCH = $arch | |
$filename = $((Get-Content ./install/friendly-filenames.json | ConvertFrom-Json)."freebsd-$arch")."friendlyName" | |
Set-Location -Path service | |
go build -o ../v2raya_binaries/v2raya_${filename}_${env:VERSION} -ldflags="-X github.com/v2rayA/v2rayA/conf.Version=${env:VERSION} -s -w" -trimpath | |
Set-Location -Path .. | |
} | |
foreach ($arch in @('amd64', 'arm64')) { | |
$env:GOOS = 'openbsd' | |
$env:GOARCH = $arch | |
$filename = $((Get-Content ./install/friendly-filenames.json | ConvertFrom-Json)."openbsd-$arch")."friendlyName" | |
Set-Location -Path service | |
go build -o ../v2raya_binaries/v2raya_${filename}_${env:VERSION}_${env:VERSION} -ldflags="-X github.com/v2rayA/v2rayA/conf.Version=${env:VERSION} -s -w" -trimpath | |
Set-Location -Path .. | |
} | |
- name: Upload Artifact | |
uses: nanoufo/action-upload-artifacts-and-release-assets@v2 | |
with: | |
path: | | |
v2raya_binaries/* | |
Build_v2rayA_SingTun_Binaries: | |
runs-on: ubuntu-latest | |
needs: [Build_v2rayA_Web] | |
env: | |
CGO_ENABLED: 0 | |
NAME: v2raya | |
DESC: "A web GUI client of Project V which supports VMess, VLESS, SS, SSR, Trojan, Tuic and Juicity protocols" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Download Artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: web | |
path: service/server/router/web | |
- name: Check Version | |
id: prep | |
env: | |
REF: ${{ inputs.tag }} | |
run: | | |
version=${REF} | |
echo "VERSION=$version" >> $GITHUB_OUTPUT | |
echo "VERSION=$version" >> $GITHUB_ENV | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
cache-dependency-path: | | |
service/go.mod | |
service/go.sum | |
go-version: ^1.21 | |
- name: Build v2rayA SingTun Binaries | |
shell: pwsh | |
run: | | |
New-Item -ItemType Directory -Path v2raya_binaries | |
foreach ($arch in @('amd64', 'arm64')) { | |
$env:GOARCH = $arch | |
$filename = $((Get-Content ./install/friendly-filenames.json | ConvertFrom-Json)."linux-$arch")."friendlyName" | |
Set-Location -Path service | |
go build -tags "with_gvisor" -o ../v2raya_binaries/v2raya_with_singtun_${filename}_${env:VERSION} -ldflags="-X github.com/v2rayA/v2rayA/conf.Version=${env:VERSION} -s -w" -trimpath | |
Set-Location -Path .. | |
} | |
foreach ($arch in @('amd64', 'arm64')) { | |
$env:GOOS = 'windows' | |
$env:GOARCH = $arch | |
$filename = $((Get-Content ./install/friendly-filenames.json | ConvertFrom-Json)."windows-$arch")."friendlyName" | |
Set-Location -Path service | |
go build -tags "with_gvisor" -o ../v2raya_binaries/v2raya_with_singtun_${filename}_${env:VERSION}.exe -ldflags="-X github.com/v2rayA/v2rayA/conf.Version=${env:VERSION} -s -w" -trimpath | |
Set-Location -Path .. | |
} | |
foreach ($arch in @('amd64', 'arm64')) { | |
$env:GOOS = 'darwin' | |
$env:GOARCH = $arch | |
$filename = $((Get-Content ./install/friendly-filenames.json | ConvertFrom-Json)."darwin-$arch")."friendlyName" | |
Set-Location -Path service | |
go build -tags "with_gvisor" -o ../v2raya_binaries/v2raya_with_singtun_${filename}_${env:VERSION} -ldflags="-X github.com/v2rayA/v2rayA/conf.Version=${env:VERSION} -s -w" -trimpath | |
Set-Location -Path .. | |
} | |
- name: Upload Artifact | |
uses: nanoufo/action-upload-artifacts-and-release-assets@v2 | |
with: | |
path: | | |
v2raya_binaries/* |