diff options
| author | tgrogers <[email protected]> | 2017-07-10 22:32:18 -0400 |
|---|---|---|
| committer | tgrogers <[email protected]> | 2017-07-10 22:32:18 -0400 |
| commit | 441bc18259620c03a6f1267d5be949b5eeba3c3e (patch) | |
| tree | f35b0ccc1fe98f1d6d6f1aad88aacf599e2bc09b /.travis.yml | |
| parent | a262269ea4b1322a19af80cc1be557da5cd0169e (diff) | |
After diggin in the torque source code, it looks like it might be this posix memlock stuff that is killing the travis install. I guess it is possible that the server disables this feature on whatever infrastructure they are using. I am trying to rebuild pbs_mom without the memlock and see how much further we get.
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 97ee0e8..dc1ed92 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,5 +8,5 @@ before_install: language: cpp -script: docker run -v `pwd`:/home/runner/gpgpu-sim_distribution:rw tgrogers/gpgpu-sim_regress:firsttry /bin/bash -c "echo \"pbs_server = 127.0.0.1\" > /var/spool/torque/mom_priv/config && echo \"\\\$loglevel 7\" >> /var/spool/torque/mom_priv/config; while true; do /usr/sbin/pbs_mom ;ps -aux | grep -i pbs; sleep 5s ; ps -aux | grep -i pbs; cat /var/spool/torque/mom_logs/\`ls -tr /var/spool/torque/mom_logs | tail -1\`;done" +script: docker run -v `pwd`:/home/runner/gpgpu-sim_distribution:rw tgrogers/gpgpu-sim_regress:firsttry /bin/bash -c "wget http://archive.ubuntu.com/ubuntu/pool/universe/t/torque/torque_2.4.16+dfsg.orig.tar.gz && tar xzvf torque_2.4.16+dfsg.orig.tar.gz && cd torque-2.4.16/ && ./configure --disable-posixmemlock && make && cp ./src/resmom/.libs/pbs_mom /usr/sbin/ echo \"\\\$loglevel 7\" >> /var/spool/torque/mom_priv/config; ./start_torque.sh; ps -aux | grep -i pbs; chown -R runner /home/runner/gpgpu-sim_distribution; echo \"mom_2\" && /etc/init.d/torque-mom restart && ps -aux | grep -i pbs && while true; do cat /var/spool/torque/mom_logs/\`ls /var/spool/torque/mom_logs\`; ps -aux | grep -i pbs; done" #script: docker run -v `pwd`:/home/runner/gpgpu-sim_distribution:rw tgrogers/gpgpu-sim_regress:firsttry /bin/bash -c "echo \"\\\$loglevel 7\" >> /var/spool/torque/mom_priv/config; ./start_torque.sh; ps -aux | grep -i pbs; cat /etc/hosts ;chown -R runner /home/runner/gpgpu-sim_distribution; echo \"mom_2\" && /etc/init.d/torque-mom restart && ps -aux | grep -i pbs && su - runner -c 'source /home/runner/gpgpu-sim_distribution/setup_environment && make -j -C /home/runner/gpgpu-sim_distribution && cd /home/runner/gpgpu-sim_simulations/ && git pull && /home/runner/gpgpu-sim_simulations/util/job_launching/run_simulations.py -N regress && while true; do lscpu; cat /var/spool/torque/server_logs/\`ls /var/spool/torque/server_logs\`; echo \"mom_logs\"; cat /var/spool/torque/mom_logs/\`ls /var/spool/torque/mom_logs\`; ps -aux | grep -i pbs; done'" |
