2016-04-06

At DNSimple we love automation, and we use Travis to test almost any piece of code we write. And not just the code.

A few years ago we started to use Travis to build and package our Erlang and Go code after a successful build. More recently, we experimented on using Travis to auto-deploy our static-generated sites to CloudFront.

I must confess I was a little bit skeptical at the beginning (I'm definitely not a fan of continuous deployment in general), but the result of the experiment was successful and we'll likely expand it to the rest of our static sites. So here's the instructions, in case you want to try the same deployment system for your sites.

Background

Before starting, a little bit of background information. We currently have a few static sites, generated using Jekyll or Nanoc from a Markdown repo: the blog, the developer documentation and the support site.

All these sites are deployed to Amazon CloudFront (over an Amazon S3 bucket) to be able to serve them via HTTPS and using a CDN. For the deploy we have been using the s3_website gem for quite a while. This gem provides a configurable library to publish the content of a folder to AWS, with a bunch of extra settings such as redirects or CloudFront distributions. The AWS keys are securely stored in two environment variables that are securely read by the gem at runtime during the deploy.

All the static sites are tested using Travis. This may be surprising to you, as you may be wondering what you could possibly test on a static site. I'll talk about that in a minute.

Deployment flow

The deployment flow using Travis is quite simple.

Changes to are committed to the GitHub repo

Travis runs the tests

If tests are successful, Travis generates the static site

If the generation is successful, Travis deployes the site using the s3_website gem and given settings

Configuration

In this section I'll talk about the various configs.

Configuring the site

This particular configuration largely depends on your static generator tool. There are a number of static site generators today: Jekyll, Hugo, Nanoc and many more.

All these tools provide you a single command to build your site to a local folder. In the case of Jekyll the command is:

The command will generate the site in a folder called _site. You can indeed change the folder passing the name as --destination. For Nanoc the command is nanoc compile.

For simplicity, we generally wrap this command into a custom Rake task called compile we can call with $ rake compile. Here's a simple example:

Configuring the tests

Having a test suite for your static site is important for two reasons:

You can rely on Travis for publishing your site (as I'll show later on)

You can test the correct compilation of the site, and you can also create specific tests to enforce publishing conventions

For a very simple test suite, you can check our public dnsimple-developer repo. The tests are in a folder called _test, to avoid conflicts with the static sites (names prefixed with _ are generally not compiled as content).

The test suite consists in a super simple Minitest helper:

and one single test suite that enforces some conventions:

Specifically, we don't want the content to include any "Fancy curly quote". These are not valid ASCII chars, and they are generally the result of cutting-and-pasting from rich text editors.

Of course, you can add as many tests as you want. We also test that the site compiles correctly, but we generally rely on the Rake tasks and exit code for this (more later in the deploy configuration).

Last but not least, we also have a Rake test task we use to run the tests:

Configuring the deployment

As previously mentioned, for the deployment we use the s3_website gem. You can write your custom deployment procedure if you don't like this gem or if you need to deploy to a different service, but for S3 this gem works just fine.

Follow the setup instructions to configure the s3_website tool. You will have to generate an s3_website.yml in your root folder containing the deployment settings.

WARNING: make sure to not include your Amazon credentials in the file, especially if the repo is public. You can use environment variables to pass the settings at runtime.

As we did for the other tasks, we generally package all the deployment instructions into a single Rake task called publish. The task depends on the compile task we previously defined.

At this point, you should have three Rake tasks:

$ rake test runs the test suite

$ rake compile compiles the site into the output folder

$ rake publish compiles the site and publishes it

All tasks should return an exit code 0 if (and only if) the task completes successfully.

Configuring Travis

Now we have all the tasks we need to compile, test and deploy the site. We just need to instruct Travis to deploy the site for us.

In the .travis.yml file we use the after_success: hook to tell Travis what to do after a successful build.

Specifically, if the build is not a pull request, the branch is master, and the build is successful, then go ahead and deploy the site using the $ rake publish command. The test conditions ensure we don't deploy a pull request, or a branch which is not the main branch.

To make sure the tests are automatically run by Travis, we configure the default Rake task to run the tests and to try to compile the site:

In this way, if the compilation fails (e.g. because of a syntax error in the site), or a test fails, the site will not be deployed.

As mentioned, we used environment variables to store the Amazon credentials for the deploy. You can safely store them in Travis using the repository setting section.

Here's an example of a successful build and deploy via Travis.

Example

You can see a live example on our public dnsimple-developer repo.

The Rakefile

The _test folder

The Travis deployment code

Wrapping up

It is worth mentioning that Travis has a large number of pre-defined deployment recipes you can use to deploy your code to a service. However, in our case we needed a customized version as we've been using certain settings for a while.

Deploying your static generated website using Travis is very simple. You can use Rake tasks to wrap the various recipes, and keep your Travis configuration files independent from the underlying service.

In general, you need:

A task to run the tests

A task to publish the site

A task to compile the site

A default task that runs the tests and the compilation, and exists with a non-zero status code on failure

You can use any type of programming language, static site generator, and target service. In our case the example shows you how to use Ruby (and Nanoc) to compile a static-generated site, run a Ruby (Minitest) test suite and deploy the site to Amazon CloudFront using the s3_website gem.

Show more