From 6cfc044ea75f91d83acec823a04a5e0de957a1f8 Mon Sep 17 00:00:00 2001 From: 6543 <6543@noreply.gitea.io> Date: Mon, 30 Mar 2020 17:15:33 +0000 Subject: [PATCH] CI: enable revive again (#294) enable revive again Co-authored-by: 6543 <6543@obermui.de> Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/294 Reviewed-by: sapk Reviewed-by: John Olheiser --- .drone.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 75fd6ec..df2340a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -34,9 +34,10 @@ steps: - name: testing pull: always - image: golang:1.13 + image: golang:1.14 environment: - GOPROXY: https://goproxy.cn,direct + GOPROXY: "https://goproxy.cn" + GO111MODULE: "on" HTTP_PROXY: "" GITEA_SDK_TEST_URL: "http://gitea:3000" GITEA_SDK_TEST_USERNAME: "test01" @@ -45,7 +46,7 @@ steps: commands: - make clean - make vet - #- make revive #does not work now, activate it as soon as it works again + - make revive - make build - curl --noproxy "*" http://gitea:3000/api/v1/version # verify connection to instance - make test