I have the following commands under "Build"-->"Execute shell" #!/bin/bash
source /v_env/bin/activate # Activate the virtualenv
cd /var/lib/jenkins/workspace/myapp
#pip install -r requirements.txt # Install or upgrade dependencies
python manage.py makemigrations
python manage.py migrate # Apply South's database migrations
sudo service nginx restart
gunicorn myapp.wsgi:application --bind=my domain ip

(The above commands are executing within a second and deployment is getting done but the "build" is taking more than 2days).And is it possible to deploy the same build on multiple server ?