-
Notifications
You must be signed in to change notification settings - Fork 20
/
config.yml
153 lines (145 loc) · 3.82 KB
/
config.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
version: 2.1
workflows:
# Environment variables required in CircleCI environment:
# - GITHUB_CREDENTIALS
dojo:
jobs:
- build_unit
- e2e_alpine:
requires:
- build_unit
- e2e_ubuntu:
requires:
- build_unit
- test_images:
requires:
- build_unit
- hold:
type: approval
requires:
- build_unit
- e2e_ubuntu
- e2e_alpine
- test_images
filters:
branches:
only: master
- release:
requires:
- hold
filters:
branches:
only: master
- homebrew_tap:
requires:
- build_unit
- release
filters:
branches:
only: master
jobs:
build_unit:
executor: platform
steps:
- setup
- run:
name: Install dojo
command: |
version="0.10.5"
wget -O /tmp/dojo https://github.com/kudulab/dojo/releases/download/${version}/dojo_linux_amd64
chmod +x /tmp/dojo
sudo mv /tmp/dojo /usr/bin/dojo
- run:
command: /bin/bash -c "./tasks build"
- run:
command: /bin/bash -c "./tasks unit"
- run:
command: /bin/bash -c "./tasks symlink linux"
- persist_to_workspace:
root: ~/repo
paths:
- bin/dojo*
e2e_alpine:
executor: platform
steps:
- setup
- run:
name: Install dojo
command: |
version="0.10.5"
wget -O /tmp/dojo https://github.com/kudulab/dojo/releases/download/${version}/dojo_linux_amd64
chmod +x /tmp/dojo
sudo mv /tmp/dojo /usr/bin/dojo
- attach_workspace:
at: ~/repo
- run:
command: /bin/bash -c "./tasks e2e alpine"
- run:
command: /bin/bash -c "./tasks test_signals alpine"
e2e_ubuntu:
executor: platform
steps:
- setup
- run:
name: Install dojo
command: |
version="0.10.5"
wget -O /tmp/dojo https://github.com/kudulab/dojo/releases/download/${version}/dojo_linux_amd64
chmod +x /tmp/dojo
sudo mv /tmp/dojo /usr/bin/dojo
- attach_workspace:
at: ~/repo
- run:
command: /bin/bash -c "./tasks e2e ubuntu"
- run:
command: /bin/bash -c "./tasks test_signals ubuntu"
test_images:
executor: platform
steps:
- setup
- attach_workspace:
at: ~/repo
- run:
command: /bin/bash -c "cd image_scripts && sudo ./tasks install_bats"
- run:
command: /bin/bash -c "cd image_scripts && ./tasks build"
- run:
command: /bin/bash -c "cd image_scripts && ./tasks test_scripts"
- run:
command: /bin/bash -c "cd image_scripts && ./tasks e2e"
release:
executor: platform
steps:
- setup
- attach_workspace:
at: ~/repo
- run:
command: /bin/bash -c "./tasks verify_version"
- run:
command: /bin/bash -c "./tasks release"
- run:
command: /bin/bash -c "./tasks release_gh"
homebrew_tap:
executor: platform
steps:
- setup
- attach_workspace:
at: ~/repo
- run:
command: /bin/bash -c "git config --global user.email \"[email protected]\""
- run:
command: /bin/bash -c "git config --global user.name \"xmik\""
- run:
command: /bin/bash -c "./tasks homebrew_tap"
commands:
setup:
steps:
- checkout
- add_ssh_keys:
fingerprints:
- "a9:26:53:09:1f:ba:44:24:4b:8e:ad:1c:bc:54:a2:95"
executors:
platform:
machine:
image: ubuntu-2204:2024.01.1
working_directory: ~/repo