Skip to content

Commit

Permalink
Add IT test
Browse files Browse the repository at this point in the history
  • Loading branch information
vharseko committed Mar 28, 2024
1 parent 5137a46 commit c4216c5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
net start openicf
net stop openicf
openicf\bin\ConnectorServer.bat /uninstall openicf
del /f /s /q openicf\logs
del /f /q openicf\logs
cmd /c "START /b openicf\bin\ConnectorServer.bat /run"
- name: Upload failure artifacts
uses: actions/upload-artifact@v4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,13 @@ NAME="openicf"
DESC="OpenICF Connector Server"

# The path to Jsvc
EXEC="$(type -P -a jsvc)"
EXEC="$(whereis -q jsvc)"
if [ ! -f "$EXEC" ]; then
echo "Could not find jsvc on path $EXEC" 1>&2
echo "Ubuntu: sudo apt-get install jsvc" 1>&2
echo "Mac: brew install jsvc" 1>&2
exit 1
fi

# The path to the folder containing OpenICF
# Only set OPENICF_HOME if not already set
Expand Down

0 comments on commit c4216c5

Please sign in to comment.