Using Travis-CI, is it possible to trigger a rebuild without pushing a new commit to GitHub?
Use case: A build fails due to an externality. The source is actually co
If you install the Travis CI Client you can use travis restart to manually re-run a build from the console. You can find the last job# for a branch using travis show
travis show master
travis restart 48 #use Job number without .1
travis logs master

UPDATE: Sadly it looks like this doesn't start a new build using the latest commit, but instead just restarts a previous build using the previous state of the repo.