summaryrefslogtreecommitdiffstats
path: root/.drone.yml
diff options
context:
space:
mode:
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.drone.yml b/.drone.yml
index 9c07599940..086b5cd2b5 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -63,9 +63,11 @@ steps:
- name: build-without-gcc
pull: always
- image: golang:1.10 # this step is kept as the lowest version of golang that we support
+ image: golang:1.11 # this step is kept as the lowest version of golang that we support
+ environment:
+ GO111MODULE: on
commands:
- - go build -o gitea_no_gcc # test if build succeeds without the sqlite tag
+ - go build -mod=vendor -o gitea_no_gcc # test if build succeeds without the sqlite tag
- name: build
pull: always