]> source.dussan.org Git - gitea.git/commitdiff
drone: a test for compat with 32 bit (#7707)
authorAntoine GIRARD <sapk@users.noreply.github.com>
Thu, 1 Aug 2019 18:00:12 +0000 (20:00 +0200)
committertechknowlogick <techknowlogick@gitea.io>
Thu, 1 Aug 2019 18:00:12 +0000 (14:00 -0400)
.drone.yml

index 73f0080f853d29c2f3504243ec79afdb95148ab9..dedf4d74109052ce200e64d833f71d4622ceedff 100644 (file)
@@ -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