1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00
v2fly/shippable.yml

21 lines
505 B
YAML
Raw Normal View History

2018-08-06 11:13:46 +02:00
# Golang is not supported on Shippable ARM64 images. We install it by ourself.
language: c
2018-08-06 10:58:00 +02:00
2018-08-06 11:06:04 +02:00
runtime:
nodePool: shippable_shared_aarch64
2018-08-06 11:00:49 +02:00
branches:
only:
- master
2018-08-06 10:58:00 +02:00
build:
ci:
2018-09-10 20:33:50 +02:00
- uname -a
2018-10-03 11:48:32 +02:00
- curl -L -o golang.tar.gz https://dl.google.com/go/go1.11.1.linux-arm64.tar.gz
2018-08-06 11:13:46 +02:00
- tar -C /usr/local -xzf golang.tar.gz
- export PATH=$PATH:/usr/local/go/bin
2018-08-06 12:13:58 +02:00
- export GOPATH=/v2ray
- go get -t v2ray.com/core/...
- go get -t v2ray.com/ext/...
2018-08-06 10:58:00 +02:00
- go test -p 1 -v v2ray.com/core/...