Skip to content

Commit

Permalink
Add "skipTests" to the default NetBeans rebuild and build actions
Browse files Browse the repository at this point in the history
With the test suite taking anywhere from 20-60 minutes already, it
doesn't make sense to constantly re-run it on each build. Instead, we
should schedule a daily action for each operating system on GitHub for
this task.
  • Loading branch information
adam-waldenberg committed Apr 24, 2023
1 parent 89329b6 commit ab68ea4
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions application/nbactions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,29 @@
<exec.appArgs></exec.appArgs>
</properties>
</action>
<action>
<actionName>rebuild</actionName>
<packagings>
<packaging>*</packaging>
</packagings>
<goals>
<goal>clean</goal>
<goal>install</goal>
</goals>
<properties>
<skipTests>true</skipTests>
</properties>
</action>
<action>
<actionName>build</actionName>
<packagings>
<packaging>*</packaging>
</packagings>
<goals>
<goal>install</goal>
</goals>
<properties>
<skipTests>true</skipTests>
</properties>
</action>
</actions>

0 comments on commit ab68ea4

Please sign in to comment.