2022-03-01 09:06:05 +00:00
|
|
|
.PHONY: nix-add-gcroots clean nix-clean run-metro test release _list _fix-node-perms _tmpdir-mk _tmpdir-rm _install-hooks
|
2017-12-13 21:45:49 +00:00
|
|
|
|
2019-07-23 06:19:48 +00:00
|
|
|
help: SHELL := /bin/sh
|
2017-12-13 21:45:49 +00:00
|
|
|
help: ##@other Show this help
|
|
|
|
@perl -e '$(HELP_FUN)' $(MAKEFILE_LIST)
|
|
|
|
|
|
|
|
# This is a code for automatic help generator.
|
|
|
|
# It supports ANSI colors and categories.
|
|
|
|
# To add new item into help output, simply add comments
|
|
|
|
# starting with '##'. To add category, use @category.
|
|
|
|
GREEN := $(shell tput -Txterm setaf 2)
|
2019-02-01 10:44:51 +00:00
|
|
|
RED := $(shell tput -Txterm setaf 1)
|
2017-12-13 21:45:49 +00:00
|
|
|
WHITE := $(shell tput -Txterm setaf 7)
|
|
|
|
YELLOW := $(shell tput -Txterm setaf 3)
|
|
|
|
RESET := $(shell tput -Txterm sgr0)
|
|
|
|
HELP_FUN = \
|
|
|
|
%help; \
|
|
|
|
while(<>) { push @{$$help{$$2 // 'options'}}, [$$1, $$3] if /^([a-zA-Z\-]+)\s*:.*\#\#(?:@([a-zA-Z\-]+))?\s(.*)$$/ }; \
|
2020-04-14 11:09:59 +00:00
|
|
|
print "Usage: make [target]\n\nSee STARTING_GUIDE.md for more info.\n\n"; \
|
2017-12-13 21:45:49 +00:00
|
|
|
for (sort keys %help) { \
|
|
|
|
print "${WHITE}$$_:${RESET}\n"; \
|
|
|
|
for (@{$$help{$$_}}) { \
|
|
|
|
$$sep = " " x (32 - length $$_->[0]); \
|
|
|
|
print " ${YELLOW}$$_->[0]${RESET}$$sep${GREEN}$$_->[1]${RESET}\n"; \
|
|
|
|
}; \
|
|
|
|
print "\n"; \
|
|
|
|
}
|
2019-04-12 08:36:30 +00:00
|
|
|
HOST_OS := $(shell uname | tr '[:upper:]' '[:lower:]')
|
2017-12-13 21:45:49 +00:00
|
|
|
|
2019-10-09 15:37:58 +00:00
|
|
|
# This can come from Jenkins
|
|
|
|
ifndef BUILD_TAG
|
2019-10-23 10:36:27 +00:00
|
|
|
export BUILD_TAG := $(shell git rev-parse --short HEAD)
|
2019-10-09 15:37:58 +00:00
|
|
|
endif
|
|
|
|
|
2022-04-22 08:20:01 +00:00
|
|
|
# We don't want to use /run/user/$UID because it runs out of space too easilly.
|
2022-07-17 12:37:46 +00:00
|
|
|
export TMPDIR = /tmp/tmp-status-mobile-$(BUILD_TAG)
|
2022-04-22 08:20:01 +00:00
|
|
|
# This has to be specified for both the Node.JS server process and the Qt process.
|
2019-10-09 15:37:58 +00:00
|
|
|
export REACT_SERVER_PORT ?= 5001
|
2022-08-31 23:30:35 +00:00
|
|
|
# Fix for ERR_OSSL_EVP_UNSUPPORTED error.
|
|
|
|
export NODE_OPTIONS += --openssl-legacy-provider
|
2022-04-22 08:20:01 +00:00
|
|
|
# The path can be anything, but home is usually safest.
|
|
|
|
export KEYSTORE_PATH ?= $(HOME)/.gradle/status-im.keystore
|
2019-04-05 17:22:49 +00:00
|
|
|
|
2019-11-19 11:17:39 +00:00
|
|
|
# Our custom config is located in nix/nix.conf
|
|
|
|
export NIX_CONF_DIR = $(PWD)/nix
|
2020-06-19 13:43:58 +00:00
|
|
|
# Location of symlinks to derivations that should not be garbage collected
|
2022-07-17 12:37:46 +00:00
|
|
|
export _NIX_GCROOTS = /nix/var/nix/gcroots/per-user/$(USER)/status-mobile
|
2019-11-19 11:17:39 +00:00
|
|
|
# Defines which variables will be kept for Nix pure shell, use semicolon as divider
|
2021-11-15 11:11:23 +00:00
|
|
|
export _NIX_KEEP ?= TMPDIR,BUILD_ENV,STATUS_GO_SRC_OVERRIDE
|
2019-11-19 11:17:39 +00:00
|
|
|
|
2022-11-20 23:46:04 +00:00
|
|
|
# Useful for Android release builds
|
2020-03-02 11:18:01 +00:00
|
|
|
TMP_BUILD_NUMBER := $(shell ./scripts/version/gen_build_no.sh | cut -c1-10)
|
|
|
|
|
2019-11-19 11:17:39 +00:00
|
|
|
# MacOS root is read-only, read nix/README.md for details
|
|
|
|
UNAME_S := $(shell uname -s)
|
|
|
|
ifeq ($(UNAME_S),Darwin)
|
|
|
|
export NIX_IGNORE_SYMLINK_STORE=1
|
|
|
|
endif
|
|
|
|
|
2019-07-15 16:34:33 +00:00
|
|
|
#----------------
|
|
|
|
# Nix targets
|
|
|
|
#----------------
|
|
|
|
|
2021-11-05 12:59:33 +00:00
|
|
|
# WARNING: This has to be located right before all the targets.
|
2019-11-29 10:20:08 +00:00
|
|
|
SHELL := ./nix/scripts/shell.sh
|
2019-04-05 17:22:49 +00:00
|
|
|
|
2021-11-05 12:59:33 +00:00
|
|
|
shell: export TARGET ?= default
|
2019-07-23 06:19:48 +00:00
|
|
|
shell: ##@prepare Enter into a pre-configured shell
|
|
|
|
ifndef IN_NIX_SHELL
|
|
|
|
@ENTER_NIX_SHELL
|
|
|
|
else
|
|
|
|
@echo "${YELLOW}Nix shell is already active$(RESET)"
|
|
|
|
endif
|
|
|
|
|
2020-04-26 12:40:06 +00:00
|
|
|
nix-repl: SHELL := /bin/sh
|
|
|
|
nix-repl: ##@nix Start an interactive Nix REPL
|
|
|
|
nix repl default.nix
|
|
|
|
|
2020-06-19 13:43:58 +00:00
|
|
|
nix-gc-protected: SHELL := /bin/sh
|
|
|
|
nix-gc-protected:
|
|
|
|
@echo -e "$(YELLOW)The following paths are protected:$(RESET)" && \
|
|
|
|
ls -1 $(_NIX_GCROOTS) | sed 's/^/ - /'
|
|
|
|
|
|
|
|
nix-gc: export TARGET := nix
|
|
|
|
nix-gc: nix-gc-protected ##@nix Garbage collect all packages older than 20 days from /nix/store
|
|
|
|
nix-store --gc
|
2019-11-29 10:20:08 +00:00
|
|
|
|
2020-04-21 10:29:54 +00:00
|
|
|
nix-clean: export TARGET := default
|
2022-07-17 12:37:46 +00:00
|
|
|
nix-clean: ##@nix Remove all status-mobile build artifacts from /nix/store
|
2019-11-29 10:20:08 +00:00
|
|
|
nix/scripts/clean.sh
|
2019-07-15 16:34:33 +00:00
|
|
|
|
|
|
|
nix-purge: SHELL := /bin/sh
|
2020-04-21 10:29:54 +00:00
|
|
|
nix-purge: ##@nix Completely remove Nix setup, including /nix directory
|
|
|
|
nix/scripts/purge.sh
|
2019-07-15 16:34:33 +00:00
|
|
|
|
2020-05-07 10:21:39 +00:00
|
|
|
nix-update-gradle: export TARGET := gradle
|
2019-07-15 16:34:33 +00:00
|
|
|
nix-update-gradle: ##@nix Update maven nix expressions based on current gradle setup
|
2020-05-07 10:21:39 +00:00
|
|
|
nix/deps/gradle/generate.sh
|
2019-07-15 16:34:33 +00:00
|
|
|
|
2019-09-07 12:57:22 +00:00
|
|
|
nix-update-clojure: export TARGET := clojure
|
2020-05-07 10:21:39 +00:00
|
|
|
nix-update-clojure: ##@nix Update maven Nix expressions based on current clojure setup
|
2019-09-07 12:57:22 +00:00
|
|
|
nix/deps/clojure/generate.sh
|
2019-07-15 16:34:33 +00:00
|
|
|
|
2019-09-07 12:57:22 +00:00
|
|
|
nix-update-gems: export TARGET := default
|
2019-09-03 20:41:40 +00:00
|
|
|
nix-update-gems: ##@nix Update Ruby gems in fastlane/Gemfile.lock and fastlane/gemset.nix
|
2019-07-20 05:41:46 +00:00
|
|
|
fastlane/update.sh
|
|
|
|
|
2019-11-29 10:20:08 +00:00
|
|
|
nix-update-pods: export TARGET := ios
|
2019-10-07 13:13:12 +00:00
|
|
|
nix-update-pods: ##@nix Update CocoaPods in ios/Podfile.lock
|
|
|
|
cd ios && pod update
|
|
|
|
|
2019-07-23 06:19:48 +00:00
|
|
|
#----------------
|
|
|
|
# General targets
|
|
|
|
#----------------
|
2017-12-13 21:45:49 +00:00
|
|
|
|
2019-07-23 06:19:48 +00:00
|
|
|
_fix-node-perms: SHELL := /bin/sh
|
|
|
|
_fix-node-perms: ##@prepare Fix permissions so that directory can be cleaned
|
2019-06-04 16:50:29 +00:00
|
|
|
$(shell test -d node_modules && chmod -R 744 node_modules)
|
|
|
|
$(shell test -d node_modules.tmp && chmod -R 744 node_modules.tmp)
|
|
|
|
|
2019-10-09 15:37:58 +00:00
|
|
|
_tmpdir-mk: SHELL := /bin/sh
|
|
|
|
_tmpdir-mk: ##@prepare Create a TMPDIR for temporary files
|
|
|
|
@mkdir -p "$(TMPDIR)"
|
|
|
|
# Make sure TMPDIR exists every time make is called
|
|
|
|
-include _tmpdir-mk
|
|
|
|
|
|
|
|
_tmpdir-rm: SHELL := /bin/sh
|
|
|
|
_tmpdir-rm: ##@prepare Remove TMPDIR
|
|
|
|
rm -fr "$(TMPDIR)"
|
|
|
|
|
2022-03-01 09:06:05 +00:00
|
|
|
_install-hooks: SHELL := /bin/sh
|
|
|
|
_install-hooks: ##@prepare Create prepare-commit-msg git hook symlink
|
2022-03-14 09:29:13 +00:00
|
|
|
@ln -s -f ../../scripts/hooks/prepare-commit-msg .git/hooks
|
2022-03-01 09:06:05 +00:00
|
|
|
-include _install-hooks
|
|
|
|
|
2020-12-21 08:20:38 +00:00
|
|
|
# Remove directories and ignored files
|
2019-04-05 17:22:49 +00:00
|
|
|
clean: SHELL := /bin/sh
|
2019-10-09 15:37:58 +00:00
|
|
|
clean: _fix-node-perms _tmpdir-rm ##@prepare Remove all output folders
|
2020-12-21 08:20:38 +00:00
|
|
|
git clean -dXf
|
|
|
|
|
|
|
|
# Remove directories, ignored and non-ignored files
|
|
|
|
purge: SHELL := /bin/sh
|
|
|
|
purge: _fix-node-perms _tmpdir-rm ##@prepare Remove all output folders
|
2019-10-09 15:37:58 +00:00
|
|
|
git clean -dxf
|
2018-08-30 12:56:45 +00:00
|
|
|
|
2020-12-21 08:20:38 +00:00
|
|
|
|
2019-11-29 10:20:08 +00:00
|
|
|
watchman-clean: export TARGET := watchman
|
2019-11-13 13:12:02 +00:00
|
|
|
watchman-clean: ##@prepare Delete repo directory from watchman
|
2022-07-17 12:37:46 +00:00
|
|
|
watchman watch-del $${STATUS_MOBILE_HOME}
|
2019-03-25 16:35:01 +00:00
|
|
|
|
2019-11-29 10:20:08 +00:00
|
|
|
pod-install: export TARGET := ios
|
2019-09-30 11:43:29 +00:00
|
|
|
pod-install: ##@prepare Run 'pod install' to install podfiles and update Podfile.lock
|
|
|
|
cd ios && pod install; cd --
|
|
|
|
|
2020-01-09 12:29:58 +00:00
|
|
|
update-fleets: ##@prepare Download up-to-date JSON file with current fleets state
|
|
|
|
curl -s https://fleets.status.im/ \
|
|
|
|
| jq --indent 4 --sort-keys . \
|
|
|
|
> resources/config/fleets.json
|
|
|
|
|
2022-04-22 08:20:01 +00:00
|
|
|
$(KEYSTORE_PATH): export TARGET := keytool
|
|
|
|
$(KEYSTORE_PATH):
|
2020-03-02 11:18:01 +00:00
|
|
|
@./scripts/generate-keystore.sh
|
|
|
|
|
2022-04-22 08:20:01 +00:00
|
|
|
keystore: $(KEYSTORE_PATH) ##@prepare Generate a Keystore for signing Android APKs
|
|
|
|
|
2021-03-03 16:01:54 +00:00
|
|
|
fdroid-max-watches: SHELL := /bin/sh
|
|
|
|
fdroid-max-watches: ##@prepare Bump max_user_watches to avoid ENOSPC errors
|
|
|
|
sysctl fs.inotify.max_user_watches=524288
|
|
|
|
|
|
|
|
fdroid-nix-dir: SHELL := /bin/sh
|
2021-02-25 10:45:33 +00:00
|
|
|
fdroid-nix-dir: ##@prepare Create /nix directory for F-Droid Vagrant builders
|
|
|
|
mkdir -m 0755 /nix
|
|
|
|
chown vagrant /nix
|
|
|
|
|
2021-06-08 07:48:11 +00:00
|
|
|
fdroid-fix-tmp: SHELL := /bin/sh
|
2021-06-10 13:53:31 +00:00
|
|
|
fdroid-fix-tmp: ##@prepare Fix TMPDIR permissions so Vagrant user is the owner
|
|
|
|
chown -R vagrant "$(TMPDIR)"
|
2021-06-08 07:48:11 +00:00
|
|
|
|
|
|
|
fdroid-build-env: fdroid-max-watches fdroid-nix-dir fdroid-fix-tmp ##@prepare Setup build environment for F-Droud build
|
2021-03-03 16:01:54 +00:00
|
|
|
|
2022-09-29 10:29:28 +00:00
|
|
|
fdroid-pr: export TARGET := android-sdk
|
2021-04-29 17:01:41 +00:00
|
|
|
fdroid-pr: ##@prepare Create F-Droid release PR
|
|
|
|
ifndef APK
|
|
|
|
$(error APK env var not defined)
|
|
|
|
endif
|
|
|
|
scripts/fdroid-pr.sh "$(APK)"
|
|
|
|
|
2021-05-12 09:07:35 +00:00
|
|
|
xcode-clean: SHELL := /bin/sh
|
|
|
|
xcode-clean: XCODE_HOME := $(HOME)/Library/Developer/Xcode
|
|
|
|
xcode-clean: ##@prepare Clean XCode derived data and archives
|
|
|
|
rm -fr $(XCODE_HOME)/DerivedData/StatusIm-* $(XCODE_HOME)/Archives/*/StatusIm*
|
|
|
|
|
2017-12-13 21:45:49 +00:00
|
|
|
#----------------
|
|
|
|
# Release builds
|
|
|
|
#----------------
|
2021-02-25 10:45:33 +00:00
|
|
|
release: release-android release-ios ##@build Build release for Android and iOS
|
2017-12-13 21:45:49 +00:00
|
|
|
|
2022-04-22 08:20:01 +00:00
|
|
|
build-fdroid: export BUILD_ENV = prod
|
|
|
|
build-fdroid: export BUILD_TYPE = release
|
|
|
|
build-fdroid: export ANDROID_ABI_SPLIT = false
|
|
|
|
build-fdroid: export ANDROID_ABI_INCLUDE = armeabi-v7a;arm64-v8a;x86;x86_64
|
|
|
|
build-fdroid: ##@build Build release for F-Droid
|
|
|
|
@scripts/build-android.sh
|
|
|
|
|
|
|
|
build-android: export BUILD_ENV ?= prod
|
|
|
|
build-android: export BUILD_TYPE ?= nightly
|
|
|
|
build-android: export BUILD_NUMBER ?= $(TMP_BUILD_NUMBER)
|
|
|
|
build-android: export ANDROID_ABI_SPLIT ?= false
|
|
|
|
build-android: export ANDROID_ABI_INCLUDE ?= armeabi-v7a;arm64-v8a;x86
|
|
|
|
build-android: ##@build Build unsigned Android APK
|
|
|
|
@scripts/build-android.sh
|
|
|
|
|
|
|
|
release-android: export TARGET := keytool
|
2020-03-02 11:18:01 +00:00
|
|
|
release-android: export KEYSTORE_PATH ?= $(HOME)/.gradle/status-im.keystore
|
2022-04-22 08:20:01 +00:00
|
|
|
release-android: keystore build-android ##@build Build signed Android APK
|
|
|
|
@scripts/sign-android.sh result/app-release-unsigned.apk
|
2017-12-13 21:45:49 +00:00
|
|
|
|
2020-05-07 10:21:39 +00:00
|
|
|
release-ios: export TARGET := ios
|
2019-06-04 15:20:03 +00:00
|
|
|
release-ios: export BUILD_ENV ?= prod
|
2021-02-25 10:45:33 +00:00
|
|
|
release-ios: watchman-clean ##@build Build release for iOS release
|
2019-06-04 16:50:29 +00:00
|
|
|
@git clean -dxf -f target/ios && \
|
2019-07-23 20:54:17 +00:00
|
|
|
$(MAKE) jsbundle-ios && \
|
2019-09-05 13:22:44 +00:00
|
|
|
xcodebuild -workspace ios/StatusIm.xcworkspace -scheme StatusIm -configuration Release -destination 'generic/platform=iOS' -UseModernBuildSystem=N clean archive
|
2017-12-13 21:45:49 +00:00
|
|
|
|
2019-07-23 20:54:17 +00:00
|
|
|
jsbundle-android: SHELL := /bin/sh
|
2020-05-07 10:21:39 +00:00
|
|
|
jsbundle-android: export TARGET := android
|
2019-07-23 20:54:17 +00:00
|
|
|
jsbundle-android: export BUILD_ENV ?= prod
|
2019-09-07 12:57:22 +00:00
|
|
|
jsbundle-android: ##@jsbundle Compile JavaScript and Clojurescript into app directory
|
|
|
|
# Call nix-build to build the 'targets.mobile.android.jsbundle' attribute and copy the.js files to the project root
|
2019-11-29 10:20:08 +00:00
|
|
|
nix/scripts/build.sh targets.mobile.android.jsbundle && \
|
2022-04-22 08:20:01 +00:00
|
|
|
mv result/*.js ./
|
2018-02-06 18:10:35 +00:00
|
|
|
|
2020-05-07 10:21:39 +00:00
|
|
|
jsbundle-ios: export TARGET := ios
|
2019-07-23 20:54:17 +00:00
|
|
|
jsbundle-ios: export BUILD_ENV ?= prod
|
2019-11-13 13:12:02 +00:00
|
|
|
jsbundle-ios: ##@jsbundle Compile JavaScript and Clojure into index.ios.js
|
2020-05-14 11:58:05 +00:00
|
|
|
yarn shadow-cljs release mobile
|
2018-09-13 09:44:33 +00:00
|
|
|
|
2020-04-23 18:19:12 +00:00
|
|
|
#--------------
|
|
|
|
# status-go lib
|
2020-05-14 11:58:05 +00:00
|
|
|
#--------------
|
2020-04-23 18:19:12 +00:00
|
|
|
|
|
|
|
status-go-android: SHELL := /bin/sh
|
|
|
|
status-go-android: ##@status-go Compile status-go for Android app
|
|
|
|
nix/scripts/build.sh targets.status-go.mobile.android
|
|
|
|
|
|
|
|
status-go-ios: SHELL := /bin/sh
|
|
|
|
status-go-ios: ##@status-go Compile status-go for iOS app
|
|
|
|
nix/scripts/build.sh targets.status-go.mobile.ios
|
|
|
|
|
2022-05-19 15:50:41 +00:00
|
|
|
status-go-library: SHELL := /bin/sh
|
|
|
|
status-go-library: ##@status-go Compile status-go for node-js
|
|
|
|
nix/scripts/build.sh targets.status-go.library
|
|
|
|
|
2017-12-13 21:45:49 +00:00
|
|
|
#--------------
|
2020-05-14 11:58:05 +00:00
|
|
|
# Watch, Build & Review changes
|
|
|
|
#--------------
|
|
|
|
|
2020-05-20 14:36:38 +00:00
|
|
|
run-clojure: export TARGET := clojure
|
2020-05-14 11:58:05 +00:00
|
|
|
run-clojure: ##@run Watch for and build Clojure changes for mobile
|
|
|
|
yarn shadow-cljs watch mobile
|
|
|
|
|
2020-05-20 14:36:38 +00:00
|
|
|
run-metro: export TARGET := clojure
|
2020-05-14 11:58:05 +00:00
|
|
|
run-metro: ##@run Start Metro to build React Native changes
|
|
|
|
@scripts/start-react-native.sh
|
2019-04-05 17:22:49 +00:00
|
|
|
|
2020-05-14 11:58:05 +00:00
|
|
|
run-re-frisk: export TARGET := clojure
|
|
|
|
run-re-frisk: ##@run Start re-frisk server
|
|
|
|
yarn shadow-cljs run re-frisk-remote.core/start
|
2017-12-13 21:45:49 +00:00
|
|
|
|
2019-06-04 16:50:29 +00:00
|
|
|
# TODO: Migrate this to a Nix recipe, much the same way as nix/mobile/android/targets/release-android.nix
|
2020-04-01 07:52:57 +00:00
|
|
|
run-android: export TARGET := android
|
2020-04-14 11:09:59 +00:00
|
|
|
run-android: ##@run Build Android APK and start it on the device
|
2019-04-01 20:07:39 +00:00
|
|
|
npx react-native run-android --appIdSuffix debug
|
2019-02-01 10:44:51 +00:00
|
|
|
|
2022-10-26 13:18:50 +00:00
|
|
|
SIMULATOR=iPhone 13
|
2019-11-29 10:20:08 +00:00
|
|
|
run-ios: export TARGET := ios
|
2020-04-14 11:09:59 +00:00
|
|
|
run-ios: ##@run Build iOS app and start it in a simulator/device
|
2018-06-06 13:47:28 +00:00
|
|
|
ifneq ("$(SIMULATOR)", "")
|
2019-04-01 20:07:39 +00:00
|
|
|
npx react-native run-ios --simulator="$(SIMULATOR)"
|
2018-06-06 13:47:28 +00:00
|
|
|
else
|
2019-04-01 20:07:39 +00:00
|
|
|
npx react-native run-ios
|
2018-06-06 13:47:28 +00:00
|
|
|
endif
|
2017-12-13 21:45:49 +00:00
|
|
|
|
2017-12-23 09:36:25 +00:00
|
|
|
#--------------
|
|
|
|
# Tests
|
|
|
|
#--------------
|
|
|
|
|
2019-09-07 12:57:22 +00:00
|
|
|
lint: export TARGET := clojure
|
2019-11-19 11:17:39 +00:00
|
|
|
lint: ##@test Run code style checks
|
2022-11-10 02:22:42 +00:00
|
|
|
sh scripts/lint-re-frame-in-quo-components.sh && \
|
2022-10-19 12:54:01 +00:00
|
|
|
clj-kondo --config .clj-kondo/config.edn --cache false --lint src && \
|
2021-03-01 14:36:59 +00:00
|
|
|
TARGETS=$$(git diff --diff-filter=d --cached --name-only src && echo src) && \
|
|
|
|
clojure -Scp "$$CLASS_PATH" -m cljfmt.main check --indents indentation.edn $$TARGETS
|
2019-11-19 11:17:39 +00:00
|
|
|
|
2019-09-07 12:57:22 +00:00
|
|
|
lint-fix: export TARGET := clojure
|
2020-01-06 11:45:15 +00:00
|
|
|
lint-fix: ##@test Run code style checks and fix issues
|
2021-03-01 14:36:59 +00:00
|
|
|
clojure -Scp "$$CLASS_PATH" -m cljfmt.main fix src --indents indentation.edn
|
2020-01-08 14:41:07 +00:00
|
|
|
|
2022-05-27 08:35:43 +00:00
|
|
|
shadow-server: export TARGET := clojure
|
|
|
|
shadow-server:##@ Start shadow-cljs in server mode for watching
|
|
|
|
yarn shadow-cljs server
|
|
|
|
|
|
|
|
test-watch: export TARGET := clojure
|
|
|
|
test-watch: ##@ Watch tests and re-run no changes to cljs files
|
|
|
|
yarn install
|
|
|
|
nodemon --exec 'yarn shadow-cljs compile mocks && yarn shadow-cljs compile test && node --require ./test-resources/override.js target/test/test.js' -e cljs
|
|
|
|
|
2019-09-07 12:57:22 +00:00
|
|
|
test: export TARGET := clojure
|
2022-08-26 13:18:45 +00:00
|
|
|
test: ##@test Run tests once in NodeJS
|
2022-05-19 15:50:41 +00:00
|
|
|
# Here we creates the gyp bindings for nodejs
|
|
|
|
yarn install
|
2019-09-07 12:57:22 +00:00
|
|
|
yarn shadow-cljs compile mocks && \
|
|
|
|
yarn shadow-cljs compile test && \
|
|
|
|
node --require ./test-resources/override.js target/test/test.js
|
2017-12-23 09:36:25 +00:00
|
|
|
|
2022-11-20 23:46:04 +00:00
|
|
|
|
|
|
|
run-visual-test-ios: export TARGET := clojure
|
|
|
|
run-visual-test-ios: XCODE_DERIVED_DATA := $(HOME)/Library/Developer/Xcode/DerivedData
|
|
|
|
run-visual-test-ios: APPLICATION_NAME := $(shell ls $(XCODE_DERIVED_DATA) | grep -E '\bStatusIm-')
|
|
|
|
run-visual-test-ios: export TEST_BINARY_PATH := $(XCODE_DERIVED_DATA)/$(APPLICATION_NAME)/Build/Products/Debug-iphonesimulator/StatusIm.app
|
|
|
|
run-visual-test-ios: ##@test Run tests once in NodeJS
|
|
|
|
yarn install
|
|
|
|
detox build --configuration ios.sim.debug && \
|
|
|
|
detox test --configuration ios.sim.debug
|
|
|
|
|
2017-12-13 21:45:49 +00:00
|
|
|
#--------------
|
|
|
|
# Other
|
|
|
|
#--------------
|
2020-05-14 11:58:05 +00:00
|
|
|
|
2022-09-29 10:29:28 +00:00
|
|
|
geth-connect: export TARGET := android-sdk
|
2019-04-05 17:22:49 +00:00
|
|
|
geth-connect: ##@other Connect to Geth on the device
|
|
|
|
adb forward tcp:8545 tcp:8545 && \
|
2017-12-13 21:45:49 +00:00
|
|
|
build/bin/geth attach http://localhost:8545
|
|
|
|
|
2020-05-14 11:58:05 +00:00
|
|
|
android-clean: export TARGET := gradle
|
2019-08-22 16:36:59 +00:00
|
|
|
android-clean: ##@prepare Clean Gradle state
|
2020-05-14 11:58:05 +00:00
|
|
|
git clean -dxf -f ./android/app/build; \
|
2020-04-21 10:06:40 +00:00
|
|
|
[[ -d android/.gradle ]] && cd android && ./gradlew clean
|
2019-08-22 16:36:59 +00:00
|
|
|
|
2022-09-29 10:29:28 +00:00
|
|
|
android-ports: export TARGET := android-sdk
|
2019-04-05 17:22:49 +00:00
|
|
|
android-ports: ##@other Add proxies to Android Device/Simulator
|
|
|
|
adb reverse tcp:8081 tcp:8081 && \
|
|
|
|
adb reverse tcp:3449 tcp:3449 && \
|
|
|
|
adb reverse tcp:4567 tcp:4567 && \
|
2018-09-30 06:22:33 +00:00
|
|
|
adb forward tcp:5561 tcp:5561
|
2018-04-10 08:29:18 +00:00
|
|
|
|
2022-09-29 10:29:28 +00:00
|
|
|
android-devices: export TARGET := android-sdk
|
2019-11-20 16:25:22 +00:00
|
|
|
android-devices: ##@other Invoke adb devices
|
|
|
|
adb devices
|
|
|
|
|
2022-09-29 10:29:28 +00:00
|
|
|
android-logcat: export TARGET := android-sdk
|
2022-07-17 12:37:46 +00:00
|
|
|
android-logcat: ##@other Read status-mobile logs from Android phone using adb
|
2019-12-06 09:53:09 +00:00
|
|
|
adb logcat | grep -e RNBootstrap -e ReactNativeJS -e ReactNative -e StatusModule -e StatusNativeLogs -e 'F DEBUG :' -e 'Go :' -e 'GoLog :' -e 'libc :'
|
2018-03-13 11:55:42 +00:00
|
|
|
|
2022-09-29 10:29:28 +00:00
|
|
|
android-install: export TARGET := android-sdk
|
2019-06-04 16:50:29 +00:00
|
|
|
android-install: export BUILD_TYPE ?= release
|
2020-04-21 10:06:40 +00:00
|
|
|
android-install: ##@other Install APK on device using adb
|
2019-10-22 11:56:13 +00:00
|
|
|
adb install result/app-$(BUILD_TYPE).apk
|
2019-06-04 16:50:29 +00:00
|
|
|
|
2019-04-05 17:22:49 +00:00
|
|
|
_list: SHELL := /bin/sh
|
2019-01-29 18:46:11 +00:00
|
|
|
_list:
|
|
|
|
@$(MAKE) -pRrq -f $(lastword $(MAKEFILE_LIST)) : 2>/dev/null | awk -v RS= -F: '/^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print $$1}}' | sort | egrep -v -e '^[^[:alnum:]]' -e '^$@$$'
|
|
|
|
|
2020-05-14 11:58:05 +00:00
|
|
|
#--------------
|
|
|
|
# REPLs
|
|
|
|
#--------------
|
2020-05-05 08:46:19 +00:00
|
|
|
|
2020-05-14 11:58:05 +00:00
|
|
|
repl-clojure: export TARGET := clojure
|
|
|
|
repl-clojure: ##@repl Start Clojure repl for mobile App
|
|
|
|
yarn shadow-cljs cljs-repl mobile
|
2020-05-05 08:46:19 +00:00
|
|
|
|
2020-05-14 11:58:05 +00:00
|
|
|
repl-nix: nix-repl ##@repl Start an interactive Nix REPL
|