Fix builds with local status-go override
Signed-off-by: Pedro Pombeiro <pombeirp@users.noreply.github.com>
This commit is contained in:
parent
21d24e7eef
commit
0cca662380
2
Makefile
2
Makefile
|
@ -323,7 +323,7 @@ android-devices: ##@other Invoke adb devices
|
||||||
android-logcat: export _NIX_ATTR := targets.mobile.android.adb.shell
|
android-logcat: export _NIX_ATTR := targets.mobile.android.adb.shell
|
||||||
android-logcat: export TARGET_OS ?= android
|
android-logcat: export TARGET_OS ?= android
|
||||||
android-logcat: ##@other Read status-react logs from Android phone using adb
|
android-logcat: ##@other Read status-react logs from Android phone using adb
|
||||||
adb logcat | grep -e RNBootstrap -e ReactNativeJS -e ReactNative -e StatusModule -e StatusNativeLogs
|
adb logcat | grep -e RNBootstrap -e ReactNativeJS -e ReactNative -e StatusModule -e StatusNativeLogs -e 'F DEBUG :' -e 'Go :' -e 'GoLog :' -e 'libc :'
|
||||||
|
|
||||||
android-install: export _NIX_ATTR := targets.mobile.android.adb.shell
|
android-install: export _NIX_ATTR := targets.mobile.android.adb.shell
|
||||||
android-install: export TARGET_OS ?= android
|
android-install: export TARGET_OS ?= android
|
||||||
|
|
|
@ -22,6 +22,7 @@ let
|
||||||
goPackagePath = "github.com/${owner}/${repo}";
|
goPackagePath = "github.com/${owner}/${repo}";
|
||||||
rev = "unknown";
|
rev = "unknown";
|
||||||
shortRev = "unknown";
|
shortRev = "unknown";
|
||||||
|
sanitizedVersion = version;
|
||||||
versionName = "develop";
|
versionName = "develop";
|
||||||
src =
|
src =
|
||||||
let path = traceValFn (path: "Using local ${repo} sources from ${path}\n") config.status_go.src_override;
|
let path = traceValFn (path: "Using local ${repo} sources from ${path}\n") config.status_go.src_override;
|
||||||
|
@ -32,7 +33,7 @@ let
|
||||||
# Keep this filter as restrictive as possible in order to avoid unnecessary rebuilds and limit closure size
|
# Keep this filter as restrictive as possible in order to avoid unnecessary rebuilds and limit closure size
|
||||||
mkFilter {
|
mkFilter {
|
||||||
dirRootsToInclude = [];
|
dirRootsToInclude = [];
|
||||||
dirsToExclude = [ ".git" ".svn" "CVS" ".hg" ".vscode" ".dependabot" ".github" ".ethereumtest" "build" "eth-node" "protocol" ];
|
dirsToExclude = [ ".git" ".svn" "CVS" ".hg" ".vscode" ".dependabot" ".github" ".ethereumtest" "build" ];
|
||||||
filesToInclude = [ "Makefile" "go.mod" "go.sum" "VERSION" ];
|
filesToInclude = [ "Makefile" "go.mod" "go.sum" "VERSION" ];
|
||||||
root = path;
|
root = path;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue