i have created script build django project called jenkins ci, every time push made.
the script runs fine if run manually, fails start web server when ran automatically.
no errors thrown, last line of script:
nohup python manage.py runserver 0:9000 > /dev/null 2>&1 & has absolutely no effect.
i 100% sure script ran jenkins user, under virtualenv, that's not problem. also, permissions not problem, have checked. said, no error thrown, don't know happening.
any ideas ?
so, tomrom95 found solution : adding build_id=dontkillme in front of command fixed everything. it's kind of funny.
here link more complete answer why didn't work , why works now.
Comments
Post a Comment