Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@ jobs:
- name: Test on Unix
if: runner.os != 'Windows'
run: |
unzip OpenICF-java-framework/openicf-zip/target/openicf-*.zip
openicf/bin/ConnectorServer.sh
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get install jsvc
openicf/bin/openicf.sh start
openicf/bin/openicf.sh stop
rm -rf openicf/logs
else
brew install coreutils jsvc
fi
unzip OpenICF-java-framework/openicf-zip/target/openicf-*.zip
openicf/bin/ConnectorServer.sh
openicf/bin/openicf.sh start
openicf/bin/openicf.sh stop
rm -rf openicf/logs
openicf/bin/ConnectorServer.sh /run &
timeout 2m bash -c 'until grep -q "ConnectorServer listening on" openicf/logs/ConnectorServer.log ; do sleep 5; done'
! grep " ERROR " openicf/logs/ConnectorServer.log
Expand Down
4 changes: 2 additions & 2 deletions OpenICF-java-framework/bundles-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<links>
<link>https://docs.groovy-lang.org/latest/html/api/</link>
<!--link>https://docs.groovy-lang.org/latest/html/api/</link-->
<!-- <link>http://openicf.forgerock.org/apidocs/</link>-->
</links>
</configuration>
Expand Down Expand Up @@ -328,7 +328,7 @@
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<links>
<link>https://docs.groovy-lang.org/latest/html/api/</link>
<!--link>https://docs.groovy-lang.org/latest/html/api/</link-->
</links>
</configuration>
</plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ case "$1" in
start)
echo "Starting the $DESC..."
# Start the service
jsvc_exec
jsvc_exec "-wait 120"

echo "The $DESC has started. pid=$(cat $PID)"
;;
Expand All @@ -110,7 +110,7 @@ case "$1" in
jsvc_exec "-stop"

# Start the service
jsvc_exec
jsvc_exec "-wait 120"

echo "The $DESC has restarted. pid=$(cat $PID)"
else
Expand Down
2 changes: 1 addition & 1 deletion OpenICF-java-framework/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
<source>${maven.compiler.source}</source>
<show>public</show>
<links>
<link>https://docs.groovy-lang.org/latest/html/api/</link>
<!--link>https://docs.groovy-lang.org/latest/html/api/</link-->
</links>
</configuration>
<executions>
Expand Down
Loading