We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59b5cc3 commit 99ccf5dCopy full SHA for 99ccf5d
Makefile
@@ -7,7 +7,7 @@
7
8
all: buildota buildotaoss ;
9
10
-.PHONY: all build clean test cmdline
+.PHONY: all clean test check build cmdline
11
12
buildota:
13
BUILD_TYPE=full "$(CURDIR)/build.sh" --no-default-build-type --no-pause $(ARGS)
@@ -16,6 +16,10 @@ buildotaoss:
16
BUILD_TYPE=oss "$(CURDIR)/build.sh" --no-default-build-type --no-pause $(ARGS)
17
build: buildotaoss ;
18
19
+test:
20
+ "$(CURDIR)/recovery-simulator/recovery.sh" "$(CURDIR)"/output/*.zip
21
+check: test ;
22
+
23
clean:
24
rm -f "$(CURDIR)/output/"*.zip
25
rm -f "$(CURDIR)/output/"*.zip.md5
0 commit comments