We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 931098d commit a77d0ecCopy full SHA for a77d0ec
1 file changed
.github/workflows/04-maven-nit.yml
@@ -111,5 +111,10 @@ jobs:
111
upsdrvctl start
112
upsd -DDDDDD &
113
UPSD_PID="$!"
114
- trap 'kill $UPSD_PID ; upsdrvctl stop' 0 1 2 3 15
115
- java -jar ./jNutList/target/jNutList-*-jar-with-dependencies.jar $SSL_ARGS -w --setvar driver.debug 1 localhost "${NUT_PORT}" "admin" "${TESTPASS_ADMIN}" || exit
+ echo "Sleeping so the server can fully start"
+ sleep 10
116
+ RES=0
117
+ java -jar ./jNutList/target/jNutList-*-jar-with-dependencies.jar $SSL_ARGS -w --setvar driver.debug 1 localhost "${NUT_PORT}" "admin" "${TESTPASS_ADMIN}" || RES=$?
118
+ kill $UPSD_PID || true
119
+ upsdrvctl stop
120
+ exit $RES
0 commit comments