mirror of
https://github.com/TECHNOFAB11/jsonnet-bundler.git
synced 2025-12-11 23:50:05 +01:00
Start testing Go 1.14 with rc0
This commit is contained in:
parent
1d729c9517
commit
a6bc2c25ae
2 changed files with 20 additions and 1 deletions
|
|
@ -42,7 +42,8 @@
|
|||
|
||||
build('1.11'),
|
||||
build('1.12'),
|
||||
build('1.13') + {depends_on: ["build-1.11", "build-1.12"]},
|
||||
build('1.13'),
|
||||
build('1.14-rc') + {depends_on: ["build-1.11", "build-1.12", "build-1.13"]},
|
||||
|
||||
golang() {
|
||||
name: 'generate',
|
||||
|
|
|
|||
18
.drone.yml
18
.drone.yml
|
|
@ -70,8 +70,26 @@ steps:
|
|||
exclude:
|
||||
- tag
|
||||
depends_on:
|
||||
- gomod
|
||||
|
||||
- name: build-1.14-rc
|
||||
pull: always
|
||||
image: golang:1.14-rc
|
||||
commands:
|
||||
- make build
|
||||
- make test
|
||||
- make test-integration
|
||||
environment:
|
||||
CGO_ENABLED: 0
|
||||
GO111MODULE: on
|
||||
when:
|
||||
event:
|
||||
exclude:
|
||||
- tag
|
||||
depends_on:
|
||||
- build-1.11
|
||||
- build-1.12
|
||||
- build-1.13
|
||||
|
||||
- name: generate
|
||||
pull: always
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue