-
Notifications
You must be signed in to change notification settings - Fork 107
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
[BUG] Windows compatibility with Makefile #308 #309
Changes from 1 commit
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 |
---|---|---|
|
@@ -68,6 +68,21 @@ In order to differentiate unit tests from integration tests, Go has a built-in m | |
make cluster.stop cluster.clean | ||
``` | ||
|
||
#### Compatibility with Windows OS | ||
|
||
If you have a problem with running 'Make' follow this steps: | ||
|
||
1. Install WSL2 (compatibility layer for running Linux applications on Windows 10). | ||
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. I think you should just add a "Windows" section to prerequisites, with links/instructions to install/download WSL and ensure make works. 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.
I think i got it, fixed that in new commit. I tried to make it shorter like you said in Issue discussion |
||
|
||
2. From Terminal choose your path to OpenSearch project and run WSL2. | ||
``` | ||
wsl | ||
``` | ||
3. Install 'Make' if you haven't done this before | ||
``` | ||
sudo apt install make | ||
``` | ||
|
||
## Lint | ||
|
||
To keep all the code in a certain uniform format, it was decided to use some writing rules. If you wrote something wrong, it's okay, you can simply run the script to check the necessary files, and optionally format the content. But keep in mind that all these checks are repeated on the pipeline, so it's better to check locally. | ||
|
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.
Any new section needs to be added to TOC.