From: Antoine GIRARD Date: Thu, 1 Aug 2019 18:00:12 +0000 (+0200) Subject: drone: a test for compat with 32 bit (#7707) X-Git-Tag: v1.10.0-rc1~311 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c1b09c30f092b03e4cd03f8081c4a8c71f593a8d;p=gitea.git drone: a test for compat with 32 bit (#7707) --- 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