Skip to content
Merged
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
4 changes: 2 additions & 2 deletions docs/install/VM/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ The purpose of these scripts is to automate the process of building an OMERO vir
DL_LOC stores the URL from which to retrieve our build:
DL_LOC="http://url-of-your-download-folder"
e.g.
DL_LOC="http://hudson.openmicroscopy.org.uk/job/OMERO-trunk-qa-builds/lastSuccessfulBuild/artifact/"
DL_LOC="http://hudson.openmicroscopy.org.uk/job/OMERO-trunk/lastSuccessfulBuild/artifact/"

DL_ARCHIVE stores the name of the zip archive to retrieve from DL_LOC because the build process could deploy many archives to that location and we must specify the particular one that we want to retrieve.
DL_ARCHIVE="omero.server.archive.zip"
e.g.
Expand Down
8 changes: 4 additions & 4 deletions docs/install/VM/setup_omero.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -e -u -x
PGPASSWORD=${PGPASSWORD:-"omero"}
TARGET=${TARGET:-"QA"} # NB. Valid args are {QA | RELEASE}
URL_RELEASE="http://cvs.openmicroscopy.org.uk/snapshots/omero/"
RELEASE_ARCHIVE="OMERO.server-Beta-4.3.1.zip"
RELEASE_ARCHIVE="OMERO.server-Beta-4.3.4.zip"
RELEASE_FOLDER=${RELEASE_ARCHIVE%.zip}
DB_VERSION="OMERO4.3"
DB_REVISION="0"
Expand All @@ -23,15 +23,15 @@ else
DL_ARCHIVE=""
if [ "x$DL_ARCHIVE" == "x" ]; then

URL=`wget -q -O- "http://hudson.openmicroscopy.org.uk/job/OMERO-trunk-qa-builds/lastSuccessfulBuild/api/xml?xpath=/freeStyleBuild/url/text()"`
FILE=`wget -q -O- "http://hudson.openmicroscopy.org.uk/job/OMERO-trunk-qa-builds/lastSuccessfulBuild/api/xml?xpath=//relativePath[contains(.,'server')]/text()"`
URL=`wget -q -O- "http://hudson.openmicroscopy.org.uk/job/OMERO-trunk/lastSuccessfulBuild/api/xml?xpath=/freeStyleBuild/url/text()"`
FILE=`wget -q -O- "http://hudson.openmicroscopy.org.uk/job/OMERO-trunk/lastSuccessfulBuild/api/xml?xpath=//relativePath[contains(.,'server')]/text()"`

wget -q "$URL"artifact/$FILE

DL_ARCHIVE=$FILE
DL_FOLDER=${DL_ARCHIVE%.zip}
else
DL_LOC="http://hudson.openmicroscopy.org.uk/job/OMERO-trunk-qa-builds/lastSuccessfulBuild/artifact/"
DL_LOC="http://hudson.openmicroscopy.org.uk/job/OMERO-trunk/lastSuccessfulBuild/artifact/"
DL_FOLDER=${DL_ARCHIVE%.zip}

wget $DL_LOC$DL_ARCHIVE
Expand Down