forked from Cargill/splinter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjustfile
243 lines (213 loc) · 6.39 KB
/
justfile
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
# Copyright 2018-2021 Cargill Incorporated
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
crates := '\
libsplinter \
splinterd \
cli \
services/scabbard/cli \
services/scabbard/libscabbard \
examples/gameroom/database \
examples/gameroom/daemon \
examples/gameroom/cli \
'
crates_quick := '\
libsplinter \
splinterd \
cli \
services/scabbard/cli \
services/scabbard/libscabbard \
'
features := '\
--features=experimental \
--features=stable \
--features=default \
--no-default-features \
'
build:
#!/usr/bin/env sh
set -e
for feature in $(echo {{features}})
do
for crate in $(echo {{crates}})
do
cmd="cargo build --tests --manifest-path=$crate/Cargo.toml $BUILD_MODE $feature"
echo "\033[1m$cmd\033[0m"
$cmd
done
done
echo "\n\033[92mBuild Success\033[0m\n"
ci:
just ci-lint-client
just ci-lint-dockerfiles
just ci-lint-openapi
just ci-lint-splinter
just ci-shellcheck
just ci-test
just ci-test-gameroom
ci-lint-client:
#!/usr/bin/env sh
set -e
docker-compose -f docker/compose/run-lint.yaml build lint-gameroom-client
docker-compose -f docker/compose/run-lint.yaml up \
--abort-on-container-exit lint-gameroom-client
ci-lint-dockerfiles: lint-dockerfiles
ci-lint-splinter:
#!/usr/bin/env sh
set -e
docker-compose -f docker/compose/run-lint.yaml build lint-splinter
docker-compose -f docker/compose/run-lint.yaml up \
--abort-on-container-exit lint-splinter
ci-lint-openapi: lint-openapi
ci-shellcheck:
#!/usr/bin/env sh
set -e
docker run --rm koalaman/shellcheck:stable --version
docker run -t --rm -v $(pwd):/mnt koalaman/shellcheck:stable \
cli/packaging/ubuntu/completions/splinter
ci-test:
#!/usr/bin/env sh
set -e
docker-compose -f tests/test-splinter.yaml build unit-test-splinter
docker-compose -f tests/test-splinter.yaml up \
--abort-on-container-exit unit-test-splinter
ci-test-gameroom: test-gameroom
ci-test-gameroom-ui: test-gameroom-ui
clean:
cargo clean
clean-metrics:
docker-compose -f docker/metrics/docker-compose.yaml down -v
copy-env:
#!/usr/bin/env sh
set -e
find . -name .env | xargs -I '{}' sh -c "echo 'Copying to {}'; rsync .env {}"
docker-build:
#!/usr/bin/env sh
set -e
export VERSION=AUTO_STRICT
export REPO_VERSION=$(./bin/get_version)
docker-compose -f docker-compose-installed.yaml build
lint: lint-ignore
#!/usr/bin/env sh
set -e
echo "\033[1mcargo fmt -- --check\033[0m"
cargo fmt -- --check
for feature in $(echo {{features}})
do
for crate in $(echo {{crates}})
do
cmd="cargo clippy --manifest-path=$crate/Cargo.toml $feature -- -D warnings"
echo "\033[1m$cmd\033[0m"
$cmd
done
done
echo "\n\033[92mLint Success\033[0m\n"
lint-client:
#!/usr/bin/env sh
set -e
cd examples/gameroom/gameroom-app
npm run lint
lint-dockerfiles:
#!/usr/bin/env sh
set -e
docker pull -q hadolint/hadolint
for dockerfile in $(find . -iname *dockerfile* -not -path '*/\.git*';)
do
echo "\033[1mLinting $dockerfile\033[0m"
docker run \
--rm \
-i \
-v $(pwd)/ci/hadolint.yaml:/.config/hadolint.yaml \
hadolint/hadolint < $dockerfile
done
echo "\n\033[92mLint Dockerfile Success\033[0m\n"
lint-ignore:
#!/usr/bin/env sh
set -e
diff -u .dockerignore .gitignore
echo "\n\033[92mLint Ignore Files Success\033[0m\n"
lint-openapi:
#!/usr/bin/env sh
set -e
docker run --volume "$PWD":/data jamescooke/openapi-validator:0.46.0 -e \
splinterd/api/static/openapi.yaml examples/gameroom/daemon/openapi.yml
echo "\n\033[92mLint Splinter OpenAPI Success\033[0m\n"
metrics:
docker-compose -f docker/metrics/docker-compose.yaml down;
docker-compose \
-f docker/metrics/docker-compose.yaml \
up \
-d \
--build;
qbuild:
#!/usr/bin/env sh
set -e
for crate in $(echo {{crates_quick}})
do
cmd="cargo build --manifest-path=$crate/Cargo.toml $BUILD_MODE --features=experimental"
echo "\033[1m$cmd\033[0m"
$cmd
done
echo "\n\033[92mBuild Success\033[0m\n"
qlint:
#!/usr/bin/env sh
set -e
echo "\033[1mcargo fmt -- --check\033[0m"
cargo fmt -- --check
for crate in $(echo {{crates_quick}})
do
cmd="cargo clippy --manifest-path=$crate/Cargo.toml --features=experimental -- -D warnings"
echo "\033[1m$cmd\033[0m"
$cmd
done
echo "\n\033[92mLint Success\033[0m\n"
qtest:
#!/usr/bin/env sh
set -e
for crate in $(echo {{crates_quick}})
do
cmd="cargo test --manifest-path=$crate/Cargo.toml --features=experimental"
echo "\033[1m$cmd\033[0m"
$cmd
done
echo "\n\033[92mTest Success\033[0m\n"
shellcheck:
#!/usr/bin/env sh
set -e
shellcheck cli/packaging/ubuntu/completions/splinter
echo "\n\033[92mShellcheck Success\033[0m\n"
test:
#!/usr/bin/env sh
set -e
for feature in $(echo {{features}})
do
for crate in $(echo {{crates}})
do
cmd="cargo test --manifest-path=$crate/Cargo.toml $TEST_MODE $feature $JUSTX_CARGO_TEST_ARGS -- $JUSTX_TEST_BINARY_ARGS"
echo "\033[1m$cmd\033[0m"
$cmd
done
done
echo "\n\033[92mTest Success\033[0m\n"
test-gameroom:
#!/usr/bin/env sh
set -e
docker-compose -f examples/gameroom/tests/docker-compose.yaml build
docker-compose -f examples/gameroom/tests/docker-compose.yaml up \
--abort-on-container-exit
test-gameroom-ui:
#!/usr/bin/env sh
set -e
docker-compose -f examples/gameroom/tests/cypress/docker-compose.yaml build
docker-compose -f examples/gameroom/tests/cypress/docker-compose.yaml up \
--abort-on-container-exit