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