-
Notifications
You must be signed in to change notification settings - Fork 146
Conversation
Update CONTRIBUTING documentation to make use of gradle wrapper
.github/CONTRIBUTING.md
Outdated
@@ -123,13 +123,13 @@ Please also follow these formatting guidelines: | |||
OpenJFX uses Gradle for its build. Before submitting your changes, run the test suite to make sure that nothing is broken, with: | |||
|
|||
```sh | |||
gradle all test | |||
./gradlew all test |
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.
The gradlew script is not executable (and must not be), so that should be:
bash ./gradlew all
Otherwise, this looks fine to me.
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.
Proposal change applied. Is it ok now?
.github/CONTRIBUTING.md
Outdated
``` | ||
|
||
If you are changing anything that might possibly affect rendering, you should run a full test with robot enabled: | ||
|
||
```sh | ||
gradle -PFULL_TEST=true -PUSE_ROBOT=true all test | ||
./gradlew -PFULL_TEST=true -PUSE_ROBOT=true all test |
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.
Same comment as above.
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.
Proposal change applied. Is it ok now?
@Ciruman Welcome to OpenJFX. Since |
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.
Looks good.
* Update CONTRIBUTING documentation to make use of gradle wrapper
Update CONTRIBUTING documentation to make use of gradle wrapper