This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -x | |
git status | |
for j in $(act -l pull_request | cut -c8-39 | grep -v 'Job ID' | tr -d ' ') | |
do | |
printf "\f\nRunning job \"%s\"\n" "${j}" | |
time act -j "${j}" | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:/root/bin | |
export ANSIBLE_GATHERING=implicit | |
script -f -c 'time ansible-playbook --key-file /root/.ssh/id_rsa_ansible /etc/ansible/playbooks/gather-facts.yml' /tmp/ansible-gather-facts.log |