Nope, nobody here can help you. We’ve got nothing to go on :*)
What sort of a job are you running? May we see some logs? How does it choose which WAR file to deploy, and even where are they coming from? Why are you expecting a newer WAR file than Jenkins is giving you?
With some more information, we may be able to help.
--Rob
--
You received this message because you are subscribed to the Google Groups "Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
jenkinsci-use...@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/jenkinsci-users/CAKO07kr9WLqR-7CEKx8xWBxoJ%3DksUduvNyY0NDF6oGcsqwhFjg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
Click here to report this email as spam.
--
You received this message because you are subscribed to the Google Groups "Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-use...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/CAKO07kpfQ6hNA0t10XqFf2_T19v%2BxVdvx%2BHgJPwGSTLyT5V4xQ%40mail.gmail.com.
deployamsapp() {
cd /app/deployments
mkdir release-on-$FOLDERDATE
cd release-on-$FOLDERDATE
wget --auth-no-challenge --http-user=name --http-password=*** -O - http://linktoams.war | tee ams.war | md5sum > $TMPDEPLOY/release-on-$FOLDERDATE/artifact-MD20SUM.txt
sleep 20;
cp ams.war $JBOSS_HOME/standalone/deployments/
fileintegrity=`md5sum $JBOSS_HOME/standalone/deployments/ams.war`
echo " Deployed file MD20 is :$fileintegrity" >> $TMPDEPLOY/release-on-$FOLDERDATE/deployedmd20.txt
}
Thanks in Advance.