From 152a5627c747f4f22ae70f0f158ce876ae020688 Mon Sep 17 00:00:00 2001 From: Darien Raymond Date: Mon, 6 Aug 2018 11:13:46 +0200 Subject: [PATCH] update shippable ci --- shippable.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/shippable.yml b/shippable.yml index f268df86f..3515a31a0 100644 --- a/shippable.yml +++ b/shippable.yml @@ -1,17 +1,18 @@ -language: go +# Golang is not supported on Shippable ARM64 images. We install it by ourself. +language: c runtime: nodePool: shippable_shared_aarch64 -go: - - "1.10" - branches: only: - master build: ci: + - curl -L -o golang.tar.gz https://dl.google.com/go/go1.10.3.linux-arm64.tar.gz + - tar -C /usr/local -xzf golang.tar.gz + - export PATH=$PATH:/usr/local/go/bin - go get -u v2ray.com/core/... - go get -u v2ray.com/ext/... - go test -p 1 -v v2ray.com/core/...