Skip to content

A docker instance to locally debug Travis JVM builds.

Notifications You must be signed in to change notification settings

tellisnz/travis-jvm-debug

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

Travis JVM Docker Image for Debugging

Utilises the travis-jvm image along with travis-cli and travis-build to create an environment where you can debug/test your Travis JVM builds.

Building

To build from Dockerfile do the following:

docker build -t tellisnz/travis-jvm-debug .

Running

When started with:

docker run -it --name travis-debug tellisnz/travis-jvm-debug

You'll arrive at a bash prompt in /home/travis/build. In here, you can clone your project, ensuring you include your username in the full path, like:

git clone https://github.com/myuser/myrepo.git myuser/myrepo

This is because the generated travis build script relies on the full path. You then compile your build script with:

cd myuser/myrepo && travis compile > ~/build/build.sh && chmod 755 ~/build/build.sh && cd ~/build

or equivalent. You can then try running your build with the ~/build/build.sh script.

Rerunning Builds

If you'd like to be able to re run your builds (as dependencies can take a while to download), ensure your scripts tidy up your file system. Then, after exiting from a previous container run, restart and attach to the container with:

docker start travis-debug
docker attach travis-debug

You'll then be starting afresh, but hopefully with your dependencies from the previous run retained.

About

A docker instance to locally debug Travis JVM builds.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published