-
Couldn't load subscription status.
- Fork 263
chore_: running CI with nwaku #6768
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
base: develop
Are you sure you want to change the base?
Changes from all commits
6be4645
b7c50c8
6342736
c623781
0404506
6cf5817
9602a9b
16b708d
4e826b0
ed6fc0f
f91e5d2
3f52901
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 |
|---|---|---|
|
|
@@ -14,7 +14,6 @@ func (s *MessengerBaseTestSuite) setupMessaging() { | |
| var err error | ||
| s.messagingEnv, err = messaging.NewTestMessagingEnvironment() | ||
| s.Require().NoError(err) | ||
| s.Require().NoError(s.messagingEnv.Setup()) | ||
|
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. removing this because it just started the node, and the node gets already started in starting the node twice was giving issues. nwaku has to protect agains it but in any case, it's a bug to attempt to do it |
||
| } | ||
|
|
||
| func (s *MessengerBaseTestSuite) SetupTest() { | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| //go:build !use_nwaku | ||
|
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. in order to run the CI and test, I changed the default to be nwaku instead of go-waku. That's the changes in the tags in most of the files in this PR. Once the PR is ready to merge, we should rever this changes in keep go-waku as the default. Probably add a CI job running everything for nwaku |
||
| // +build !use_nwaku | ||
| //go:build use_gowaku | ||
| // +build use_gowaku | ||
|
|
||
| // Copyright 2019 The Waku Library Authors. | ||
| // | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,6 @@ | ||
| //go:build use_gowaku | ||
| // +build use_gowaku | ||
|
|
||
| package wakuv2 | ||
|
|
||
| import ( | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this will be reverted once we want to merge the PR
once we start using nwaku as a default we will need to remove the if condition
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Ivansete-status : you can start here, this flag is available in CI
status-go/_assets/ci/Jenkinsfile.nwaku
Line 96 in 790ef72