Remove Travis CI old builds

There's no way for the user to remove builds, but if you really want them removed I think your best bet is to email support ([email protected]) and ask them to remove it manually.


Per https://twitter.com/travisci/status/557932883571392512

Since at least 2015/01/21 you can now delete [the log] from the web UI:

travis web ui remove log


You can use the travis command line tool

Login first using travis login then you can do the following

LAST_BUILD_NUMBER=68
for i in $(seq 1 $LAST_BUILD_NUMBER ); do  travis logs $i --delete --force ; done

This will remove the "logs" so there's no information aside from the header and any confidential information will no longer be visible.


As henrikhodne, build deletion is not possible.

From https://github.com/travis-ci/travis-ci/issues/877 (mirror) where the issue was raised:

Closing this issue for good, as this isn't on the roadmap for the near future. (Jul 23, 2015)

Tags:

Travis Ci