forked from AleoNet/snarkOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yml
243 lines (233 loc) · 8.04 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
version: 2.1
commands:
setup_environment:
description: "Setup testing environment"
parameters:
cache_key:
type: string
default: snarkos-stable-cache
steps:
- run: set -e
- setup_remote_docker
- run:
name: Prepare environment and install dependencies
command: |
export SCCACHE_CACHE_SIZE=200M
export WORK_DIR="$CIRCLE_WORKING_DIRECTORY/.cache/sccache"
export SCCACHE_DIR="$CIRCLE_WORKING_DIRECTORY/.cache/sccache"
mkdir -p "$CIRCLE_WORKING_DIRECTORY/.bin"
wget https://github.com/mozilla/sccache/releases/download/0.2.13/sccache-0.2.13-x86_64-unknown-linux-musl.tar.gz
tar -C "$CIRCLE_WORKING_DIRECTORY/.bin" -xvf sccache-0.2.13-x86_64-unknown-linux-musl.tar.gz
mv $CIRCLE_WORKING_DIRECTORY/.bin/sccache-0.2.13-x86_64-unknown-linux-musl/sccache $CIRCLE_WORKING_DIRECTORY/.bin/sccache
export PATH="$PATH:$CIRCLE_WORKING_DIRECTORY/.bin"
export RUSTC_WRAPPER="sccache"
rm -rf "$CIRCLE_WORKING_DIRECTORY/.cargo/registry"
sudo apt-get update && sudo apt-get install -y clang llvm-dev llvm pkg-config xz-utils make libssl-dev libssl-dev
- restore_cache:
keys:
- << parameters.cache_key >>
clear_environment:
description: "Clear environment"
parameters:
cache_key:
type: string
default: snarkos-stable-cache
steps:
- run: (sccache -s||true)
- run: set +e
- save_cache:
key: << parameters.cache_key >>
paths:
- .cache/sccache
- .cargo
install_rust_nightly:
description: "Install Rust nightly toolchain"
steps:
- run:
command: |
rustup toolchain install nightly-x86_64-unknown-linux-gnu
jobs:
tests:
docker:
- image: cimg/rust:1.56.1
resource_class: 2xlarge
parallelism: 20
steps:
- checkout
- setup_environment:
cache_key: snarkos-stable-cache
- run:
name: Build and run tests
no_output_timeout: 35m
command: |
cargo test -- --list --format terse | sed 's/: test//' > test_names.txt
TEST_NAMES=$(circleci tests split test_names.txt)
for i in $(echo $TEST_NAMES | sed "s/ / /g")
do
RUST_MIN_STACK=8388608 cargo test --workspace $i
done
- clear_environment:
cache_key: snarkos-stable-cache
# codecov:
# machine:
# image: ubuntu-1604:202004-01
# docker_layer_caching: true
# resource_class: 2xlarge
# steps:
# - attach_workspace:
# at: /home/circleci/project/
# - run:
# name: Run kcov
# command: >
# cd ~/project/project/ &&
# docker run --security-opt seccomp=unconfined -v ~/project/project/:/home/circleci/project/
# howardwu/snarkos-codecov:2021-03-25 bash /home/circleci/project/ci/kcov.sh
# - run: cd ./project/ && bash <(curl -s https://codecov.io/bash)
fmt:
docker:
- image: cimg/rust:1.56.1
resource_class: 2xlarge
steps:
- checkout
- install_rust_nightly
- setup_environment:
cache_key: snarkos-fmt-cache
- run:
name: Check style
no_output_timeout: 35m
command: cargo +nightly fmt --all -- --check
- clear_environment:
cache_key: snarkos-fmt-cache
clippy:
docker:
- image: cimg/rust:1.56.1
resource_class: 2xlarge
steps:
- checkout
- install_rust_nightly
- setup_environment:
cache_key: snarkos-clippy-cache
- run:
name: Check style
no_output_timeout: 35m
command: cargo +nightly clippy --workspace --all-targets
- clear_environment:
cache_key: snarkos-clippy-cache
build-and-publish-docker-arm:
machine:
image: ubuntu-2004:202101-01
docker_layer_caching: true
resource_class: arm.large
steps:
- checkout
- run: mkdir -p my_workspace
- run:
name: "Build snarkos Docker Image ARM V8"
no_output_timeout: 2h
command: |
VERSION=$(git rev-parse --short HEAD)
docker build -f Dockerfile -t $DOCKER_REPO:$CIRCLE_BRANCH-$VERSION-arm64 .
- run:
name: "Push snarkos Docker Image ARM V8"
command: |
VERSION=$(git rev-parse --short HEAD)
echo $DOCKERHUB_TOKEN | docker login -u $DOCKERHUB_USERNAME --password-stdin
# CREATE THE SHELL FILE WITH IMAGE NAME AND TAG
docker push $DOCKER_REPO:$CIRCLE_BRANCH-$VERSION-arm64
echo "Pushed $DOCKER_REPO:$CIRCLE_BRANCH-$VERSION-arm64"
- run:
name: "Save arm64 image tag"
command: |
VERSION=$(git rev-parse --short HEAD)
echo "$CIRCLE_BRANCH-$VERSION-arm64" > my_workspace/docker_tag_arm
- persist_to_workspace:
root: my_workspace
paths:
- docker_tag_arm
build-and-publish-docker-amd:
machine:
image: ubuntu-2004:202101-01
docker_layer_caching: true
resource_class: xlarge
steps:
- checkout
- run: mkdir -p my_workspace
- run:
name: "Build snarkos Docker Image AMD"
no_output_timeout: 2h
command: |
VERSION=$(git rev-parse --short HEAD)
docker build -f Dockerfile -t $DOCKER_REPO:$CIRCLE_BRANCH-$VERSION-amd64 .
- run:
name: "Push snarkos Docker Image AMD"
command: |
VERSION=$(git rev-parse --short HEAD)
echo $DOCKERHUB_TOKEN | docker login -u $DOCKERHUB_USERNAME --password-stdin
docker push $DOCKER_REPO:$CIRCLE_BRANCH-$VERSION-amd64
echo "Pushed $DOCKER_REPO:$CIRCLE_BRANCH-$VERSION-amd64"
- run:
name: "Save amd64 image tag"
command: |
VERSION=$(git rev-parse --short HEAD)
echo "$CIRCLE_BRANCH-$VERSION-amd64" > my_workspace/docker_tag_amd
- persist_to_workspace:
root: my_workspace
paths:
- docker_tag_amd
publish_snarkos_manifest:
machine:
image: ubuntu-2004:202101-01
docker_layer_caching: true
resource_class: medium
steps:
- checkout
- attach_workspace:
at: my_workspace
- run:
name: "Pull ARM docker image"
command: |
ARM_TAG=$(cat my_workspace/docker_tag_arm)
echo $ARM_TAG
echo $DOCKERHUB_TOKEN | docker login -u $DOCKERHUB_USERNAME --password-stdin
docker pull $DOCKER_REPO:$ARM_TAG
- run:
name: "Pull AMD docker image"
command: |
AMD_TAG=$(cat my_workspace/docker_tag_amd)
echo $AMD_TAG
docker pull $DOCKER_REPO:$AMD_TAG
- run:
name: "Create and push docker multi arch manifest"
command: |
ARM_TAG=$(cat my_workspace/docker_tag_arm)
AMD_TAG=$(cat my_workspace/docker_tag_amd)
echo $DOCKERHUB_TOKEN | docker login -u $DOCKERHUB_USERNAME --password-stdin
echo $DOCKER_REPO
echo $CIRCLE_BRANCH
echo $ARM_TAG
echo $AMD_TAG
docker manifest create $DOCKER_REPO:${CIRCLE_BRANCH}-latest --amend $DOCKER_REPO:${ARM_TAG} --amend $DOCKER_REPO:${AMD_TAG}
docker manifest inspect $DOCKER_REPO:${CIRCLE_BRANCH}-latest
docker manifest push $DOCKER_REPO:${CIRCLE_BRANCH}-latest
echo "Pushed $DOCKER_REPO:${CIRCLE_BRANCH}-latest"
workflows:
main-workflow:
jobs:
- tests
# - codecov:
# requires:
# - rust-stable
- fmt
- clippy
build-snarkos-docker-images:
when:
or:
- equal: [ testnet2, << pipeline.git.branch >> ]
- equal: [ docker-builds, << pipeline.git.branch >> ]
jobs:
- build-and-publish-docker-arm
- build-and-publish-docker-amd
- publish_snarkos_manifest:
requires:
- build-and-publish-docker-arm
- build-and-publish-docker-amd