Drone tester
This commit is contained in:
parent
b274b6a961
commit
7ab809d939
1 changed files with 17 additions and 4 deletions
21
.drone.yml
21
.drone.yml
|
@ -3,7 +3,20 @@ type: docker
|
|||
name: default
|
||||
|
||||
steps:
|
||||
- name: gnu-linux
|
||||
image: maven
|
||||
commands:
|
||||
- mvn clean package
|
||||
- name: en
|
||||
image: alpine
|
||||
commands:
|
||||
- echo hello
|
||||
- echo world
|
||||
|
||||
- name: fr
|
||||
image: alpine
|
||||
commands:
|
||||
- echo bounjour
|
||||
- echo monde
|
||||
when:
|
||||
ref:
|
||||
include:
|
||||
- refs/heads/feature-*
|
||||
exclude:
|
||||
- refs/heads/**
|
||||
|
|
Reference in a new issue