From d02dbc572563a8e89717b8b49b3c5af2b3ac35f3 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Tue, 14 Sep 2021 09:56:11 -0400 Subject: [PATCH] trying out drone This is lacking for a few reasons: - multi-arch - matrix of versions of golang Signed-off-by: Vincent Batts --- .drone.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..0a86bd5 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,13 @@ +kind: pipeline +name: default +steps: +steps: +- name: build + image: golang + commands: + - git config --global url."https://".insteadOf git:// + - make install.tools + - mkdir -p $GOPATH/src/github.com/vbatts && ln -sf $(pwd) $GOPATH/src/github.com/vbatts/go-mtree + - make validation + - make validation.tags + - make build.arches