-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild-scripts.yml
135 lines (126 loc) · 4.02 KB
/
build-scripts.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
steps:
- label: ":aws: Amazon_Linux 2 - Build Pinned"
plugins:
- docker#v3.3.0:
image: "amazonlinux:2.0.20190508"
always-pull: true
agents:
queue: "automation-eks-eos-builder-fleet"
command:
- "./scripts/eosio_build.sh -P -y"
timeout: 180
- label: ":centos: CentOS 7.7 - Build Pinned"
plugins:
- docker#v3.3.0:
image: "centos:7.7.1908"
always-pull: true
agents:
queue: "automation-eks-eos-builder-fleet"
command:
- "./scripts/eosio_build.sh -P -y"
timeout: 180
- label: ":darwin: macOS 10.14 - Build Pinned"
env:
REPO: "[email protected]:EOSIO/eos.git"
TEMPLATE: "10.14.6_6C_14G_80G"
TEMPLATE_TAG: "clean::cicd::git-ssh::nas::brew::buildkite-agent"
agents: "queue=mac-anka-large-node-fleet"
command:
- "git clone [email protected]:EOSIO/eos.git eos && cd eos && git checkout -f $BUILDKITE_BRANCH && git submodule update --init --recursive"
- "cd eos && ./scripts/eosio_build.sh -P -y"
plugins:
- EOSIO/anka#v0.6.1:
debug: true
vm-name: "10.14.6_6C_14G_80G"
no-volume: true
modify-cpu: 12
modify-ram: 24
always-pull: true
wait-network: true
vm-registry-tag: "clean::cicd::git-ssh::nas::brew::buildkite-agent"
failover-registries:
- "registry_1"
- "registry_2"
inherit-environment-vars: true
- EOSIO/skip-checkout#v0.1.1:
cd: ~
timeout: 180
- label: ":ubuntu: Ubuntu 16.04 - Build Pinned"
plugins:
- docker#v3.3.0:
image: "ubuntu:16.04"
always-pull: true
agents:
queue: "automation-eks-eos-builder-fleet"
command:
- "apt update && apt upgrade -y && apt install -y git"
- "./scripts/eosio_build.sh -P -y"
timeout: 180
- label: ":ubuntu: Ubuntu 18.04 - Build Pinned"
plugins:
- docker#v3.3.0:
image: "ubuntu:18.04"
always-pull: true
agents:
queue: "automation-eks-eos-builder-fleet"
command:
- "apt update && apt upgrade -y && apt install -y git"
- "./scripts/eosio_build.sh -P -y"
timeout: 180
- label: ":aws: Amazon_Linux 2 - Build UnPinned"
plugins:
- docker#v3.3.0:
image: "amazonlinux:2.0.20190508"
always-pull: true
agents:
queue: "automation-eks-eos-builder-fleet"
command:
- "./scripts/eosio_build.sh -y"
timeout: 180
- label: ":centos: CentOS 7.7 - Build UnPinned"
plugins:
- docker#v3.3.0:
image: "centos:7.7.1908"
always-pull: true
agents:
queue: "automation-eks-eos-builder-fleet"
command:
- "./scripts/eosio_build.sh -y"
timeout: 180
- label: ":darwin: macOS 10.14 - Build UnPinned"
env:
REPO: "[email protected]:EOSIO/eos.git"
TEMPLATE: "10.14.6_6C_14G_80G"
TEMPLATE_TAG: "clean::cicd::git-ssh::nas::brew::buildkite-agent"
agents: "queue=mac-anka-large-node-fleet"
command:
- "git clone [email protected]:EOSIO/eos.git eos && cd eos && git checkout -f $BUILDKITE_BRANCH && git submodule update --init --recursive"
- "cd eos && ./scripts/eosio_build.sh -y"
plugins:
- EOSIO/anka#v0.6.1:
debug: true
vm-name: "10.14.6_6C_14G_80G"
no-volume: true
modify-cpu: 12
modify-ram: 24
always-pull: true
wait-network: true
vm-registry-tag: "clean::cicd::git-ssh::nas::brew::buildkite-agent"
failover-registries:
- "registry_1"
- "registry_2"
inherit-environment-vars: true
- EOSIO/skip-checkout#v0.1.1:
cd: ~
timeout: 180
- label: ":ubuntu: Ubuntu 18.04 - Build UnPinned"
plugins:
- docker#v3.3.0:
image: "ubuntu:18.04"
always-pull: true
agents:
queue: "automation-eks-eos-builder-fleet"
command:
- "apt update && apt upgrade -y && apt install -y git"
- "./scripts/eosio_build.sh -y"
timeout: 180