You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+15-10Lines changed: 15 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,24 +17,24 @@ Below are instructions on how to download and compile the source code from the c
17
17
You only need to do one.
18
18
Also subscribe to the developers list by [clicking here](http://www.freelists.org/list/eclipse-arduino-dev) or by sending a mail with subject _Subscribe_ to [[email protected]](mailto:[email protected]?subject=Subscribe) (this is not for support questions)
19
19
20
-
## There are lots of issues open that seem fixed.
21
-
We only close issues when they are in part of a stable release. Therefore the open list contains all open items for the last stable release. Known open issue for the last nightly can be found with this query:
22
-
is:issue is:open -label:"status: fixed in nightly"
20
+
## There are lots of issues in the release that seem fixed.
21
+
We close issues when they have been validated as part of the nightly. Therefore the open list no longer contains items fixed in the nightly. Known issue fixed in the last nightly can be found with this query:
22
+
is:issue is:closed -label:"status: fixed in nightly"
23
23
24
24
## Quick Installation
25
25
### Prerequisites
26
26
27
27
Please install [git] (http://git-scm.com/downloads) and [maven] (http://maven.apache.org/download.cgi).
28
28
29
-
### Build from source
29
+
### Build from the command line from source for your os and the default eclipse instance
To build for neon and the platform you are running on:
80
81
81
-
mvn clean verify
82
+
mvn clean verify -Dtest=RegressionTest
83
+
84
+
### what is this -Dtest=RegressionTest about
85
+
mvn builds and run tests automagically. However many junit tests in Sloeber are very extensive and will always have failures.
86
+
By adding -Dtest=RegressionTest anly the regression test is run and this test should be successfull.
82
87
83
88
### Setting up a repository
84
89
@@ -91,7 +96,7 @@ If you want to import the latest code based plugin to another Eclipse setup you
91
96
* Fork the repository on GitHub (https://help.github.com/articles/fork-a-repo) for your changes. Note that your git link should look like this: https://github.com/YOUR_FORK/arduino-eclipse-plugin.git –– we will use it later.
92
97
* Checkout locally
93
98
* Make changes
94
-
* Run ```mvn clean verify``` to build
99
+
* Run ```mvn clean verify -Dtest=RegressionTest``` to build
0 commit comments