16 lines
744 B
Bash
16 lines
744 B
Bash
|
#!/bin/bash
|
||
|
LIPASE_PACKAGE_FILE_PATH=$(ls lipase*.zip)
|
||
|
echo "LIPASE_PACKAGE_FILE_PATH=$LIPASE_PACKAGE_FILE_PATH"
|
||
|
if [ "$GRAFFY_OWNCLOUD_JENKINS_PWD" = '' ]
|
||
|
then
|
||
|
echo "the value of the environment variable GRAFFY_OWNCLOUD_JENKINS_PWD is empty, while its contents are expected to come from JenkinsFile (this script is designed to be called from the accompanying JenkinsFile)"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
virtualenv ./python.virtualenv
|
||
|
source ./python.virtualenv/bin/activate
|
||
|
pip install pyocclient # installs python owncloud module
|
||
|
|
||
|
python -c "import owncloud; oc = owncloud.Client('https://cloud.ipr.univ-rennes1.fr'); oc.login('graffy','$GRAFFY_OWNCLOUD_JENKINS_PWD'); oc.put_file('downloads/$LIPASE_PACKAGE_FILE_PATH', r'$LIPASE_PACKAGE_FILE_PATH')"
|
||
|
|