-
Notifications
You must be signed in to change notification settings - Fork 109
Build improvements #890
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
Build improvements #890
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -94,7 +94,7 @@ DOCKER_TOOLS = docker run \ | |
| -v $(shell bash -c "mkdir -p /tmp/go-lint-cache; echo /tmp/go-lint-cache"):/root/.cache/golangci-lint \ | ||
| -v $$(pwd):/build litd-tools | ||
|
|
||
| ITEST_TAGS := integration itest $(LND_RELEASE_TAGS) | ||
| ITEST_TAGS := dev integration itest lowscrypt $(LND_RELEASE_TAGS) | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hmm I'm not fully sure why the
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah, right. Speeds up wallet creation by using weaker encryption. Added that to the commit message. |
||
| ITEST_LDFLAGS := $(call make_ldflags, $(ITEST_TAGS)) | ||
|
|
||
| GREEN := "\\033[0;32m" | ||
|
|
@@ -238,6 +238,10 @@ flake-unit: | |
| @$(call print, "Flake hunting unit tests.") | ||
| while [ $$? -eq 0 ]; do GOTRACEBACK=all $(UNIT) -count=1; done | ||
|
|
||
| flake-itest-only: | ||
| @$(call print, "Flake hunting integration tests.") | ||
| while [ $$? -eq 0 ]; do make itest-only icase='${icase}'; done | ||
|
|
||
| # ========= | ||
| # UTILITIES | ||
| # ========= | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.