You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
534 B
Bash
22 lines
534 B
Bash
10 years ago
|
#!/bin/bash
|
||
|
|
||
|
##
|
||
|
# jenkins_daily.sh
|
||
|
#
|
||
|
# environment variables (all optional)
|
||
|
# JENKINS : URL of jenkins server. Default http://exiv2.dyndns.org:8080
|
||
|
##
|
||
|
if [ -z "$JENKINS" ]; then export JENKINS=http://exiv2.dyndns.org:8080; fi
|
||
|
|
||
|
export EXIV2=$(cygpath -aw .)
|
||
|
rm -rf $PWD/../build
|
||
|
mkdir $PWD/../build
|
||
|
PATH=$PATH:/cygdrive/c/Windows/System32:/cygdrive/c/gnu/exiv2/trunk/contrib/
|
||
|
cmd.exe /c "cd $(cygpath -aw ./../build) && vcvars 2015 64 && set && cmakeBuild --rebuild --test"
|
||
|
result=$?
|
||
|
|
||
|
set -v
|
||
|
# That's all Folks!
|
||
|
##
|
||
|
exit $result
|