1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-25 21:36:13 -04:00

remove reference to ext/

This commit is contained in:
Darien Raymond 2019-02-10 21:04:51 +01:00
parent 5530ead381
commit 3539ae9c38
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
5 changed files with 1 additions and 13 deletions

View File

@ -17,7 +17,6 @@ jobs:
- script: |
go version
go get -v -t -d v2ray.com/core/...
go get -v -t -d v2ray.com/ext/...
go get -u github.com/jstemmer/go-junit-report
workingDirectory: '$(system.defaultWorkingDirectory)'
displayName: 'Fetch sources'

View File

@ -42,7 +42,6 @@ jobs:
- script: |
go version
go get -v -t -d v2ray.com/core/...
go get -v -t -d v2ray.com/ext/...
workingDirectory: '$(system.defaultWorkingDirectory)'
displayName: 'Fetch sources'
- script: |
@ -75,7 +74,6 @@ jobs:
- script: |
go version
go get -v -t -d v2ray.com/core/...
go get -v -t -d v2ray.com/ext/...
workingDirectory: '$(system.defaultWorkingDirectory)'
displayName: 'Fetch sources'
- script: |

View File

@ -22,6 +22,5 @@ if [ -z "$GOPATH" ]; then
fi
go get -u v2ray.com/core/...
go get -u v2ray.com/ext/...
go build -o $GOPATH/bin/v2ray v2ray.com/core/main
go build -o $GOPATH/bin/v2ctl v2ray.com/ext/tools/control/main
go build -o $GOPATH/bin/v2ctl v2ray.com/core/infra/control/main

View File

@ -34,13 +34,6 @@ echo "Pushing changes"
git push --follow-tags
popd
pushd $GOPATH/src/v2ray.com/ext
echo "Adding a new tag: " "v$VER" "to ext"
git tag -s -a "v$VER" -m "Version ${VER}"
echo "Pushing changes to ext"
git push --follow-tags
popd
echo "Launching build machine."
DIR="$(dirname "$0")"
RAND="$(openssl rand -hex 5)"

View File

@ -47,7 +47,6 @@ export GOPATH=/v2
# Download all source code
go get -t v2ray.com/core/...
go get -t v2ray.com/ext/...
pushd $GOPATH/src/v2ray.com/core/
git checkout tags/${RELEASE_TAG}