-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
176 lines (144 loc) · 5.51 KB
/
Makefile
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
#
# Makefile
#
all: app_nanos.tgz \
app_nanosp.tgz \
app_nanox.tgz \
app_stax.tgz \
app_flex.tgz
debug: app_nanos_dbg.tgz \
app_nanosp_dbg.tgz \
app_nanox_dbg.tgz \
app_stax_dbg.tgz \
app_flex_dbg.tgz
.PHONY: clean all debug format integration_tests unit_tests scan-build% \
integration_tests_basic integration_tests_basic_% docker_%
DOCKER = docker
DOCKER_RUN = $(DOCKER) run --rm -i -v "$(realpath .):/app"
DOCKER_RUN_APP_BUILDER = $(DOCKER_RUN) ledger-app-builder:latest
DOCKER_RUN_APP_OCAML = $(DOCKER_RUN) ledger-app-tezos-ocaml:latest
#
# Fetch the docker images:
LEDGERHQ=ghcr.io/ledgerhq
CPU = $(shell uname -m)
docker_speculos:
$(DOCKER) pull $(LEDGERHQ)/speculos
$(DOCKER) image tag $(LEDGERHQ)/speculos speculos
docker_ledger_app_builder:
$(DOCKER) pull $(LEDGERHQ)/ledger-app-builder/ledger-app-dev-tools:latest
$(DOCKER) image tag $(LEDGERHQ)/ledger-app-builder/ledger-app-dev-tools:latest \
ledger-app-builder
docker_ledger_app_ocaml:
$(DOCKER) build -t ledger-app-tezos-ocaml \
-f docker/Dockerfile.ocaml docker --platform linux/$(CPU)
docker_ledger_app_integration_tests:
$(DOCKER) pull $(LEDGERHQ)/ledger-app-builder/ledger-app-dev-tools:latest
$(DOCKER) image tag $(LEDGERHQ)/ledger-app-builder/ledger-app-dev-tools:latest \
ledger-app-tezos-integration-tests
docker_images: docker_speculos \
docker_ledger_app_builder \
docker_ledger_app_ocaml \
docker_ledger_app_integration_tests
scan-build-%:
SDK=$(shell echo $* | tr "[:lower:]" "[:upper:]")_SDK; \
$(DOCKER_RUN_APP_BUILDER) bash -c \
"BOLOS_SDK=\$$$$SDK make -C app scan-build"
scan-build: scan-build-nanos scan-build-nanosp \
scan-build-nanox scan-build-stax scan-build-flex
app_%_dbg.tgz: app/src/*.[ch] \
app/src/parser/*.[ch] \
app/Makefile
SDK=$(shell echo $* | tr "[:lower:]" "[:upper:]")_SDK; \
$(DOCKER_RUN_APP_BUILDER) bash -c \
"BOLOS_SDK=\$$$$SDK make -C app DEBUG=1"
$(DOCKER_RUN_APP_BUILDER) bash -c "cd app/bin/ && tar cz ." > $@
app_%.tgz: app/src/*.[ch] \
app/src/parser/*.[ch] \
app/Makefile
SDK=$(shell echo $* | tr "[:lower:]" "[:upper:]")_SDK; \
$(DOCKER_RUN_APP_BUILDER) bash -c \
"BOLOS_SDK=\$$$$SDK make -C app"
$(DOCKER_RUN_APP_BUILDER) bash -c "cd app/bin/ && tar cz ." > $@
clean:
rm -rf bin app_*.tgz
make -C tests/unit/ctest clean
$(DOCKER_RUN_APP_BUILDER) make -C app mrproper
$(DOCKER_RUN_APP_OCAML) bash -c "make -C /app/tests/generate clean && cd /app && rm -rf _build"
unit_tests: test/samples/micheline/nano/samples.hex \
test/samples/operations/nano/samples.hex \
tests/unit/parser/*.ml \
tests/unit/parser/*.[ch] \
tests/unit/parser/dune \
tests/unit/parser/Makefile \
tests/unit/Makefile \
tests/unit/ctest/Makefile \
tests/unit/ctest/*.[ch]
@cp app/src/parser/[!g]*.[ch] tests/unit/parser/
$(DOCKER_RUN_APP_OCAML) make -C /app/tests/unit
RUN_TEST_DOCKER = ./tests/integration/run_test_docker.sh
integration_tests_basic_stax: app_stax.tgz \
app_stax_dbg.tgz \
tests/integration/* \
tests/integration/touch/*
$(RUN_TEST_DOCKER) stax tests/integration/touch
integration_tests_basic_flex: app_flex.tgz \
app_flex_dbg.tgz \
tests/integration/* \
tests/integration/touch/*
$(RUN_TEST_DOCKER) flex tests/integration/touch
integration_tests_basic_%: app_%.tgz \
app_%_dbg.tgz \
tests/integration/* \
tests/integration/nano/* \
tests/integration/nano/%/*
docker run --rm -i -v "$(realpath .):/app" \
--entrypoint=/bin/sh ledger-app-tezos-integration-tests -c " \
TMP_DIR=\$$(mktemp -d /tmp/foo-XXXXXX); \
cd /app; \
tar xfz app_$*_dbg.tgz -C \$$TMP_DIR; \
apk add gmp-dev curl jq libsodium-dev git xxd procps; \
python3 -m venv tezos_test_env --system-site-package; \
source ./tezos_test_env/bin/activate; \
python3 -m pip install -r tests/requirements.txt -q ; \
python3 -m pytest -n 32 tests/integration/nano/ --tb=no \
--device $* --app \$$TMP_DIR/app.elf \
--log-dir integration_tests_log"
integration_tests_basic: integration_tests_basic_nanos \
integration_tests_basic_nanosp \
integration_tests_basic_nanox \
integration_tests_basic_stax \
integration_tests_basic_flex
integration_tests_%: integration_tests_basic_% \
test/samples/operations/nano/samples.hex\
test/samples/micheline/nano/samples.hex \
tests/integration/*.sh
$(RUN_TEST_DOCKER) $* \
tests/samples/micheline/nano \
tests/samples/operations/nano
integration_tests: tests/integration/*.sh \
integration_tests_nanos \
integration_tests_nanosp \
integration_tests_nanox \
integration_tests_basic_stax \
integration_tests_basic_flex
test/samples/micheline/%/samples.hex: tests/generate/*.ml* \
tests/generate/dune \
tests/generate/Makefile
$(DOCKER_RUN_APP_OCAML) make -C /app/tests/generate \
../samples/micheline/$*/samples.hex
test/samples/operations/%/samples.hex: tests/generate/*.ml* \
tests/generate/dune \
tests/generate/Makefile
$(DOCKER_RUN_APP_OCAML) make -C /app/tests/generate \
../samples/operations/$*/samples.hex
load_%: app_%.tgz
ledgerctl delete "Tezos Wallet"
DIR=`mktemp -d` ; tar xf $< -C $$DIR && cd $$DIR && ledgerctl install app.toml ; rm -rf $$DIR
#
# Dash vs under aliases:
format:
@find ./app/src ./tests -name '*.c' -exec clang-format -i "{}" \;
@find ./app/src ./tests -name '*.h' -exec clang-format -i "{}" \;
docker-images: docker_images
integration-tests: integration_tests
unit-tests: unit_tests