summaryrefslogtreecommitdiffstats
path: root/.drone.yml
diff options
context:
space:
mode:
authorAntoine GIRARD <sapk@users.noreply.github.com>2019-08-01 20:00:12 +0200
committertechknowlogick <techknowlogick@gitea.io>2019-08-01 14:00:12 -0400
commitc1b09c30f092b03e4cd03f8081c4a8c71f593a8d (patch)
treef03f30529b095de70ad5e607bccefde70b720308 /.drone.yml
parente5037943712d45c1edb27ad882f9e1fb024df42d (diff)
downloadgitea-c1b09c30f092b03e4cd03f8081c4a8c71f593a8d.tar.gz
gitea-c1b09c30f092b03e4cd03f8081c4a8c71f593a8d.zip
drone: a test for compat with 32 bit (#7707)
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml
index 73f0080f85..dedf4d7410 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -69,6 +69,16 @@ steps:
commands:
- go build -mod=vendor -o gitea_no_gcc # test if build succeeds without the sqlite tag
+ - name: build-linux-386
+ pull: always
+ image: golang:1.12
+ environment:
+ GO111MODULE: on
+ GOOS: linux
+ GOARCH: 386
+ commands:
+ - go build -mod=vendor -o gitea_linux_386 # test if compatible with 32 bit
+
- name: build
pull: always
image: golang:1.12