From acadf875f57417d6bd559cdd7a2c4a864da4ea85 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Thu, 3 Dec 2020 13:22:49 -0500 Subject: [PATCH] try the drone exec backend Signed-off-by: Vincent Batts --- .drone.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index 06eb6a6..0d93762 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,11 +1,14 @@ --- kind: pipeline -type: docker +type: exec name: default +platform: + os: linux + arch: amd64 + steps: - name: backend - image: golang commands: - - go build - - go test + - docker run -i --rm -u 0 -v $(pwd):/go/src/mtest -w /go/src/mtest golang go test -v . +