mirror of https://github.com/v2ray/v2ray-core
update dat files before build
parent
765d66296b
commit
8366627f5f
|
@ -101,6 +101,7 @@ jobs:
|
||||||
displayName: 'Install Bazel'
|
displayName: 'Install Bazel'
|
||||||
- script: |
|
- script: |
|
||||||
cd ./src/v2ray.com/core
|
cd ./src/v2ray.com/core
|
||||||
|
./release/updatedat.sh
|
||||||
$HOME/bin/bazel build --action_env=GOPATH=$GOPATH --action_env=PATH=$PATH --action_env=GPG_PASS=${SIGN_KEY_PASS} --action_env=SPWD=$PWD --action_env=GOCACHE=$(go env GOCACHE) --spawn_strategy local //release:all
|
$HOME/bin/bazel build --action_env=GOPATH=$GOPATH --action_env=PATH=$PATH --action_env=GPG_PASS=${SIGN_KEY_PASS} --action_env=SPWD=$PWD --action_env=GOCACHE=$(go env GOCACHE) --spawn_strategy local //release:all
|
||||||
workingDirectory: '$(GOPATH)'
|
workingDirectory: '$(GOPATH)'
|
||||||
displayName: 'Build Binaries'
|
displayName: 'Build Binaries'
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
|
||||||
|
pushd $GOPATH/src/v2ray.com/core/
|
||||||
|
# Update geoip.dat
|
||||||
|
GEOIP_TAG=$(curl --silent "https://api.github.com/repos/v2ray/geoip/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
|
||||||
|
curl -L -o release/config/geoip.dat "https://github.com/v2ray/geoip/releases/download/${GEOIP_TAG}/geoip.dat"
|
||||||
|
sleep 1
|
||||||
|
|
||||||
|
# Update geosite.dat
|
||||||
|
GEOSITE_TAG=$(curl --silent "https://api.github.com/repos/v2ray/domain-list-community/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
|
||||||
|
curl -L -o release/config/geosite.dat "https://github.com/v2ray/domain-list-community/releases/download/${GEOSITE_TAG}/dlc.dat"
|
||||||
|
sleep 1
|
||||||
|
popd
|
Loading…
Reference in New Issue