This repository has been archived by the owner on Oct 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
.drone.yml
102 lines (90 loc) · 1.78 KB
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
---
kind: pipeline
type: docker
name: test_and_build
platform:
os: linux
arch: amd64
steps:
- name: builtin-compile-pipeline
image: golang:1.19
command:
- go
- build
- -o
- /var/scribe/pipeline
- ./ci
environment:
CGO_ENABLED: 0
GOARCH: amd64
GOOS: linux
volumes:
- name: scribe
path: /var/scribe
- name: test_and_build
image: golang:1.19
commands:
- /var/scribe/pipeline --pipeline="test and build" --client cli --build-id=$DRONE_BUILD_NUMBER --state=file:///var/scribe-state/state.json --log-level=debug --version=v0.10.0-5-ge3d2c2b-dirty ./ci
volumes:
- name: scribe
path: /var/scribe
- name: scribe-state
path: /var/scribe-state
depends_on:
- builtin-compile-pipeline
volumes:
- name: scribe
temp: {}
- name: scribe-state
temp: {}
- name: docker_socket
host:
path: /var/run/docker.sock
---
kind: pipeline
type: docker
name: create_github_release
platform:
os: linux
arch: amd64
steps:
- name: builtin-compile-pipeline
image: golang:1.19
command:
- go
- build
- -o
- /var/scribe/pipeline
- ./ci
environment:
CGO_ENABLED: 0
GOARCH: amd64
GOOS: linux
volumes:
- name: scribe
path: /var/scribe
- name: create_github_release
image: golang:1.19
commands:
- /var/scribe/pipeline --pipeline="create github release" --client cli --build-id=$DRONE_BUILD_NUMBER --state=file:///var/scribe-state/state.json --log-level=debug --version=v0.10.0-5-ge3d2c2b-dirty ./ci
volumes:
- name: scribe
path: /var/scribe
- name: scribe-state
path: /var/scribe-state
depends_on:
- builtin-compile-pipeline
volumes:
- name: scribe
temp: {}
- name: scribe-state
temp: {}
- name: docker_socket
host:
path: /var/run/docker.sock
trigger:
event:
- tag
depends_on:
- test_and_build
...