Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

iOS size test #984

Merged
merged 3 commits into from
Apr 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions platform/ios/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ export BUILDTYPE ?= Debug
export IS_LOCAL_DEVELOPMENT ?= true
export TARGET_BRANCH ?= main
export CI ?= 0
export DEV_TEAM ?= ""

# When only the dependencies in the package.json are installed
# Node.js will error when running a script from the root scripts directory
Expand Down Expand Up @@ -156,6 +157,11 @@ ios-lint: ios-pod-lint
ios-pod-lint:
./platform/ios/scripts/lint-podspecs.js

# make ios-sizetest
.PHONY: ios-sizetest
ios-sizetest:
./scripts/size-check.sh ${DEV_TEAM}

# make ios-uitest
.PHONY: ios-uitest
ios-uitest: $(IOS_PROJ_PATH)
Expand Down
Loading