aboutsummaryrefslogtreecommitdiff
path: root/.drone.yml
blob: b83a87d9a81d94c7813c8f1bd581ef90087f9b0a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
kind: pipeline
name: bottin

steps:
- name: build
  image: golang:stretch
  commands:
    - go get -d -v
    - go build -v
    - cd test_automatic
    - go get -d -v
    - go build -v

- name: test_bottin
  image: consul:latest
  commands:
    - ./test_automatic/start_test.sh

---
kind: signature
hmac: 939fca00ff84d40e9364cd936c18c40c5becafa05e0f887bc04cf6336a4913a2

...