We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a04f9df commit 08e9410Copy full SHA for 08e9410
2 files changed
.drone/drone.yml
@@ -0,0 +1,42 @@
1
+kind: pipeline
2
+type: docker
3
+name: linux-amd64
4
+
5
+platform:
6
+ arch: amd64
7
+ os: linux
8
9
+steps:
10
+- name: test
11
+ image: docker.io/drycc/go-dev
12
+ pull: if-not-exists
13
+ privileged: true
14
+ commands:
15
+ - make bootstrap test
16
+ environment:
17
+ VERSION: ${DRONE_TAG:-latest}-linux-amd64
18
+ DEV_REGISTRY: ${DEV_REGISTRY:-docker.io}
19
+ DRYCC_REGISTRY: ${DRYCC_REGISTRY:-docker.io}
20
+ when:
21
+ event:
22
+ - push
23
+ - tag
24
+ - pull_request
25
26
+- name: codecov
27
28
29
30
+ - curl -s https://codecov.io/bash | bash
31
32
+ CODECOV_TOKEN:
33
+ from_secret: codecov_token
34
35
+ status:
36
+ - success
37
38
+trigger:
39
40
41
42
.travis.yml
0 commit comments