mirror of https://github.com/v2ray/v2ray-core
remove reference to ext/
parent
5530ead381
commit
3539ae9c38
|
@ -17,7 +17,6 @@ jobs:
|
||||||
- script: |
|
- script: |
|
||||||
go version
|
go version
|
||||||
go get -v -t -d v2ray.com/core/...
|
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
|
go get -u github.com/jstemmer/go-junit-report
|
||||||
workingDirectory: '$(system.defaultWorkingDirectory)'
|
workingDirectory: '$(system.defaultWorkingDirectory)'
|
||||||
displayName: 'Fetch sources'
|
displayName: 'Fetch sources'
|
||||||
|
|
|
@ -42,7 +42,6 @@ jobs:
|
||||||
- script: |
|
- script: |
|
||||||
go version
|
go version
|
||||||
go get -v -t -d v2ray.com/core/...
|
go get -v -t -d v2ray.com/core/...
|
||||||
go get -v -t -d v2ray.com/ext/...
|
|
||||||
workingDirectory: '$(system.defaultWorkingDirectory)'
|
workingDirectory: '$(system.defaultWorkingDirectory)'
|
||||||
displayName: 'Fetch sources'
|
displayName: 'Fetch sources'
|
||||||
- script: |
|
- script: |
|
||||||
|
@ -75,7 +74,6 @@ jobs:
|
||||||
- script: |
|
- script: |
|
||||||
go version
|
go version
|
||||||
go get -v -t -d v2ray.com/core/...
|
go get -v -t -d v2ray.com/core/...
|
||||||
go get -v -t -d v2ray.com/ext/...
|
|
||||||
workingDirectory: '$(system.defaultWorkingDirectory)'
|
workingDirectory: '$(system.defaultWorkingDirectory)'
|
||||||
displayName: 'Fetch sources'
|
displayName: 'Fetch sources'
|
||||||
- script: |
|
- script: |
|
||||||
|
|
|
@ -22,6 +22,5 @@ if [ -z "$GOPATH" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
go get -u v2ray.com/core/...
|
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/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
|
||||||
|
|
|
@ -34,13 +34,6 @@ echo "Pushing changes"
|
||||||
git push --follow-tags
|
git push --follow-tags
|
||||||
popd
|
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."
|
echo "Launching build machine."
|
||||||
DIR="$(dirname "$0")"
|
DIR="$(dirname "$0")"
|
||||||
RAND="$(openssl rand -hex 5)"
|
RAND="$(openssl rand -hex 5)"
|
||||||
|
|
|
@ -47,7 +47,6 @@ export GOPATH=/v2
|
||||||
|
|
||||||
# Download all source code
|
# Download all source code
|
||||||
go get -t v2ray.com/core/...
|
go get -t v2ray.com/core/...
|
||||||
go get -t v2ray.com/ext/...
|
|
||||||
|
|
||||||
pushd $GOPATH/src/v2ray.com/core/
|
pushd $GOPATH/src/v2ray.com/core/
|
||||||
git checkout tags/${RELEASE_TAG}
|
git checkout tags/${RELEASE_TAG}
|
||||||
|
|
Loading…
Reference in New Issue