This repository has been archived by the owner on Mar 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 98
/
justfile
281 lines (248 loc) · 7.56 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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
# 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.
set dotenv-load := true
crates := '\
sdk \
daemon \
griddle \
cli \
contracts/pike \
contracts/location \
contracts/product \
contracts/purchase_order \
contracts/schema \
contracts/track_and_trace \
'
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 $feature"
echo "\033[1m$cmd\033[0m"
$cmd
done
done
echo "\n\033[92mBuild Success\033[0m\n"
build-experimental:
#!/usr/bin/env sh
set -e
for crate in $(echo {{crates}})
do
cmd="cargo build --tests --manifest-path=$crate/Cargo.toml --features=experimental"
echo "\033[1m$cmd\033[0m"
$cmd
done
echo "\n\033[92mBuild Success\033[0m\n"
ci:
just ci-lint-dockerfiles
just ci-lint-openapi
just ci-lint-typos
just ci-lint-ui
just ci-test-ui
just ci-lint
just ci-test
just ci-test-integration
ci-build-ui-test-deps:
#!/usr/bin/env sh
set -e
docker build . -f ui/grid-ui/docker/test/Dockerfile -t grid-ui:$ISOLATION_ID
docker build . -f ui/saplings/product/test/Dockerfile -t product-sapling:$ISOLATION_ID
ci-lint:
#!/usr/bin/env sh
set -e
docker-compose -f docker/compose/run-lint.yaml build lint-grid
docker-compose -f docker/compose/run-lint.yaml up \
--abort-on-container-exit lint-grid
ci-lint-dockerfiles: lint-dockerfiles
ci-lint-openapi: lint-openapi
ci-lint-typos: lint-typos
ci-lint-ui: ci-build-ui-test-deps
#!/usr/bin/env sh
set -e
docker run --rm --env CI=true grid-ui:$ISOLATION_ID just lint-grid-ui
docker run --rm --env CI=true product-sapling:$ISOLATION_ID just lint-product-sapling
ci-test:
#!/usr/bin/env bash
set -e
if [[ $GITHUB_ACTIONS ]] && [[ $RUNNER_OS == "Linux" ]]; then
echo "Github Actions is running this workflow."
docker rmi $(docker images -qa)
sudo rm -rf /usr/local/lib/android/
fi
docker-compose -f docker/compose/grid-tests.yaml build --force-rm
docker-compose -f docker/compose/grid-tests.yaml up --abort-on-container-exit --exit-code-from grid_tests
ci-test-integration:
#!/usr/bin/env sh
set -e
echo "\033[1mRunning daemon integration test\033[0m"
cd daemon/test && \
CARGO_ARGS=" --features experimental" \
docker-compose up \
--abort-on-container-exit \
--exit-code-from daemon --build
echo "\033[1mRunning integration test\033[0m"
cd ../../integration && \
CARGO_ARGS=" --features experimental" \
docker-compose up \
--abort-on-container-exit \
--exit-code-from gridd --build
ci-test-ui: ci-build-ui-test-deps
#!/usr/bin/env sh
set -e
docker run --rm --env CI=true grid-ui:$ISOLATION_ID just test-grid-ui
docker run --rm --env CI=true product-sapling:$ISOLATION_ID just test-product-sapling
clean:
cargo clean
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.yaml build
docker-compose -f ui/grid-ui/docker/docker-compose.yaml build grid-ui
fix-typos:
#!/usr/bin/env sh
set -e
docker build -t lint-typos -f docker/typos.dockerfile .
echo "\033[1mFixing Typos\033[0m"
docker run -i --rm -v $(pwd):/project lint-typos typos -w --config .github/typos_config.toml
lint:
#!/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-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-experimental:
#!/usr/bin/env sh
set -e
echo "\033[1mcargo fmt -- --check\033[0m"
cargo fmt -- --check
for crate in $(echo {{crates}})
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"
lint-grid-ui:
#!/usr/bin/env sh
set -e
cd ui/grid-ui
yarn lint
echo "\n\033[92mLint Grid UI Success\033[0m\n"
lint-openapi:
#!/usr/bin/env sh
set -e
docker run --volume "$PWD":/data jamescooke/openapi-validator:0.46.0 -e daemon/openapi.yaml
echo "\n\033[92mLint Grid OpenAPI Success\033[0m\n"
lint-product-sapling:
#!/usr/bin/env sh
set -e
cd ui/saplings/product
yarn lint
echo "\n\033[92mLint Product Sapling Success\033[0m\n"
lint-typos:
#!/usr/bin/env sh
set -e
docker build -t lint-typos -f docker/typos.dockerfile .
echo "\033[1mLinting Typos\033[0m"
docker run -i --rm -v $(pwd):/project lint-typos typos --config .github/typos_config.toml
echo "\n\033[92mLint Typos Success\033[0m\n"
lint-ui:
just lint-grid-ui
just lint-product-sapling
test: build
#!/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 $feature $TEST_ARGS"
echo "\033[1m$cmd\033[0m"
$cmd
done
done
echo "\n\033[92mTest Success\033[0m\n"
test-experimental: build-experimental
#!/usr/bin/env sh
set -e
for crate in $(echo {{crates}})
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"
test-experimental-hack: build-experimental
#!/usr/bin/env sh
set -e
for crate in $(echo {{crates}})
do
cmd="cargo test --manifest-path=$crate/Cargo.toml --features=experimental -- --test-threads=1"
echo "\033[1m$cmd\033[0m"
$cmd
done
echo "\n\033[92mTest Success\033[0m\n"
test-grid-ui:
#!/usr/bin/env sh
set -e
cd ui/grid-ui
yarn test
echo "\n\033[92mTest Grid UI Success\033[0m\n"
test-product-sapling:
#!/usr/bin/env sh
set -e
cd ui/saplings/product
yarn test
echo "\n\033[92mTest Product Sapling Success\033[0m\n"
test-ui:
just test-grid-ui
just test-product-sapling