Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/MyRobotLab/myrobotlab in…
Browse files Browse the repository at this point in the history
…to inmoov2-heart-2
  • Loading branch information
supertick committed Apr 25, 2024
2 parents f09bf0e + fb534d3 commit da6107c
Show file tree
Hide file tree
Showing 13 changed files with 5,251 additions and 5,330 deletions.
1 change: 1 addition & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ pipeline {
MOTD = 'you know, for robots !'
VERSION_PREFIX = "1.1"
VERSION = "${VERSION_PREFIX}" + ".${BUILD_NUMBER}"
// MAVEN_OPTS = '-Xmx4096m -XX:MaxPermSize=256m -XX:+ExitOnOutOfMemoryError'
// JDK_HOME = "${tool 'openjdk-11-linux'}/jdk-11.0.1"
// JAVA_HOME = "${JDK_HOME}"
// PATH="${env.JAVA_HOME}/bin:${env.PATH}"
Expand Down
2 changes: 1 addition & 1 deletion myrobotlab.bat
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ IF NOT "%*"=="" (
"%JAVA%" %JAVA_OPTIONS% -cp %CLASSPATH% org.myrobotlab.service.Runtime --install
)

"%JAVA%" %JAVA_OPTIONS% -cp %CLASSPATH% org.myrobotlab.service.Runtime --log-level warn -s log Log webgui WebGui intro Intro python Python
"%JAVA%" %JAVA_OPTIONS% -cp %CLASSPATH% org.myrobotlab.service.Runtime --log-level info -s log Log security Security webgui WebGui intro Intro python Python

)
2 changes: 1 addition & 1 deletion myrobotlab.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@ else
"${JAVA}" ${JAVA_OPTIONS} -cp ${CLASSPATH} org.myrobotlab.service.Runtime --install
fi

"${JAVA}" ${JAVA_OPTIONS} -cp ${CLASSPATH} org.myrobotlab.service.Runtime --log-level warn -s log Log webgui WebGui intro Intro python Python
"${JAVA}" ${JAVA_OPTIONS} -cp ${CLASSPATH} org.myrobotlab.service.Runtime --log-level info -s log Log security Security webgui WebGui intro Intro python Python

echo $# $@
2 changes: 2 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1995,6 +1995,8 @@
<!-- do not upgrade this version jacoco will break -->
<version>3.2.2</version>
<configuration>
<forkCount>1</forkCount> <!-- Use one JVM -->
<reuseForks>true</reuseForks> <!-- Reuse this JVM for all tests -->
<!-- critical for jacoco to have original argLine prefixed here-->
<argLine>${argLine} -Djava.library.path=libraries/native
-Djna.library.path=libraries/native</argLine>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/myrobotlab/service/AudioFile.java
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public AudioData play(String filename, boolean blocking) {

public AudioData play(String filename, boolean blocking, Integer repeat, String track) {

log.info("Play called for Filename {}", filename);
log.info("Play called for Filename {}", filename);
if (track == null || track.isEmpty()) {
track = currentTrack;
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/myrobotlab/service/NeoPixel.java
Original file line number Diff line number Diff line change
Expand Up @@ -1051,4 +1051,4 @@ public void setPixel(int address, String color) {
}
setPixel(address, rgb[0], rgb[1], rgb[2]);
}
}
}
Loading

0 comments on commit da6107c

Please sign in to comment.