diff options
author | techknowlogick <techknowlogick@users.noreply.github.com> | 2018-08-29 09:43:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-29 09:43:58 -0400 |
commit | 080428b2bfd6721a40ec6a6bb858cc2d7ad6c583 (patch) | |
tree | be76c60090931edd97f6091546e5e0e8be364b37 /.drone.yml | |
parent | 179123de350fafeb5f4fada858b4dd3767b6db2f (diff) | |
download | gitea-080428b2bfd6721a40ec6a6bb858cc2d7ad6c583.tar.gz gitea-080428b2bfd6721a40ec6a6bb858cc2d7ad6c583.zip |
Upgrade images in .drone.yml to more recent versions (#4819)
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/.drone.yml b/.drone.yml index 0caeb1e675..8986bbf76c 100644 --- a/.drone.yml +++ b/.drone.yml @@ -22,7 +22,7 @@ pipeline: branch: [ master ] update-translations: - image: alpine:3.6 + image: alpine:3.7 commands: - mv ./options/locale/locale_en-US.ini ./options/ - sed -i -e 's/="/=/g' -e 's/"$$//g' ./options/locale/*.ini @@ -64,7 +64,7 @@ pipeline: event: [ push, tag, pull_request ] build: - image: golang:1.10 + image: golang:1.11 pull: true environment: TAGS: bindata sqlite @@ -83,7 +83,7 @@ pipeline: event: [ push, tag, pull_request ] test: - image: golang:1.10 + image: golang:1.11 pull: true group: test environment: @@ -95,7 +95,7 @@ pipeline: branch: [ master ] test: - image: golang:1.10 + image: golang:1.11 pull: true group: test environment: @@ -107,7 +107,7 @@ pipeline: branch: [ release/* ] test: - image: golang:1.10 + image: golang:1.11 pull: true group: test environment: @@ -130,7 +130,7 @@ pipeline: # event: [ push, tag, pull_request ] test-mysql: - image: golang:1.10 + image: golang:1.11 pull: true group: test environment: @@ -145,7 +145,7 @@ pipeline: branch: [ master ] test-mysql: - image: golang:1.10 + image: golang:1.11 pull: true group: test environment: @@ -159,7 +159,7 @@ pipeline: event: [ tag ] test-pgsql: - image: golang:1.10 + image: golang:1.11 pull: true group: test environment: @@ -173,7 +173,7 @@ pipeline: event: [ push, tag, pull_request ] generate-coverage: - image: golang:1.10 + image: golang:1.11 pull: true environment: TAGS: bindata |