From a5a9430527285c1c0f96c81877e3acd4e55622dc Mon Sep 17 00:00:00 2001 From: Stefan Date: Thu, 15 Aug 2019 18:18:38 +0200 Subject: [PATCH] Add Dronen --- .drone.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..499005d --- /dev/null +++ b/.drone.yml @@ -0,0 +1,23 @@ +kind: pipeline +name: gluon-build + +clone: + disable: true + +clone: + depth: 50 + +steps: +- name: submodules + image: docker:git + commands: + - git submodule update --recursive --remote + +- name: build-ar71xx-generic + image: hoffmannhosting/gluon-builder + commands: + - make -j5 GLUON_BRANCH=$branch GLUON_TARGET=ar71xx-generic GLUON_RELEASE=$input_hood-$branch_name-$input_version $gluon_options + environment: + GOOS: linux + GOARCH: amd64 + CGO_ENABLED: 0