Skip to content

Commit

Permalink
Issue #32: conditionally install RemoteServiceReplication when urlTyp…
Browse files Browse the repository at this point in the history
…e is ssh ... avoid cloning Announcements when https urls are required (on github)
  • Loading branch information
dalehenrich committed Jan 29, 2025
1 parent 6377622 commit 38f7f65
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions tests/test_rowanV3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,12 @@ if [ "$template" = "minimal_rowan3" ] ; then
installProject.stone file:product/examples/GsCommands/projectsHome/GsCommands/rowan/specs/GsCommands.ston \
--projectsHome=product/examples/GsCommands/projectsHome $*

echo "installing RemoteServiceReplication -- partial workaround for https://github.com/GemTalk/Rowan/issues/905"
installProject.stone file:$STONES_HOME/$registry/common_projects/RemoteServiceReplication/rowan/specs/RemoteServiceReplication.ston \
--projectsHome=$STONES_HOME/$registry/common_projects $*
if [ "$urlType" = "ssh" ] ; then
# RemoteServiceReplication requires Announcements and is defined to use ssh clone
echo "installing RemoteServiceReplication -- partial workaround for https://github.com/GemTalk/Rowan/issues/905"
installProject.stone file:$STONES_HOME/$registry/common_projects/RemoteServiceReplication/rowan/specs/RemoteServiceReplication.ston \
--projectsHome=$STONES_HOME/$registry/common_projects $*
fi

echo "installing RowanClientServices"
installProject.stone file:$STONES_HOME/$registry/gs_projects/RowanClientServicesV3/rowan/specs/RowanClientServices.ston \
Expand All @@ -157,7 +160,7 @@ if [ "$template" = "minimal_rowan3" ] ; then
# install GsDevKit_stones using Rowan installProject.stone script
echo "installing GsDevKit_stones"
installProject.stone file:$GSDEVKIT_STONES_ROOT/rowan/specs/GsDevKit_stones.ston \
--projectsHome=$GSDEVKIT_STONES_ROOT/.. $*
--projectsHome=$GSDEVKIT_STONES_ROOT/.. $*
fi

# delete the stone
Expand Down

0 comments on commit 38f7f65

Please sign in to comment.