How to configure Travis-CI to build pull requests & merges to master w/o redundancy

GithubTravis CiPull Request

Github Problem Overview


To put it in "BDD" terms:

> Background:
Given I'm contributing to a GH repo

> When I create a pull request
Then Travis should build the latest commit

> When I push to an existing pull request
Then Travis should build the latest commit

> When I merge a pull request to master
Then Travis should build master

I was confused by Travis-CI's "build pushes" and "build PRs" settings, as:

  • Enabling both causes each Pull Request to be build twice by Travis
  • once for the commit on that branch
  • and once again for the merge commit of that branch into its destination
  • Enabling just "build PRs" causes PRs to be built, but doesn't result in post-merge builds (i.e. on master).
  • Enabling "pushes" brute-force satisfies the above criteria by building all pushes to the repo. You can try to finagle things by white- & black-listing branches, but that will probably bite you unless you're rigorously disciplined with branch names.

This is explained more in Travis-CI docs and GH issue #3241.

Anyone know a configuration that satisfies the above criteria?

Github Solutions


Solution 1 - Github

I eventually found another GH issue (#2111) which gave me the idea to try enabling both PRs & pushes, but with a whitelist to restrict pushes to a specific branch. This seems to satisfy the criteria for my workflow. Here's what I did:

  1. Enable both PRs & branch pushes in the Travis settings for the repo:

travis push/pr settings enabled

  1. Change .travis.yml to white-list master branch (i.e. only build pushes to master):

branches:
only:
- master

  1. Test it by creating a PR with the .travis.yml change, and another PR with some empty commits to verify it works for forks too.

  2. Verify successful merge commit build from master.

build result of merge to master

Solution 2 - Github

Just found in travis docs

Add to .travis.yml

if: type = push

alternatively:

if: type = pull_request

Solution 3 - Github

Assuming you want to build all PRs, something like the following will do the trick. Enable both branch and PR builds on the settings page, and put this line as the first line in your travis.yml:

if: (type = push AND branch IN (master, dev)) OR (type = pull_request AND NOT branch =~ /no-ci/)

This will attempt a push build on all pushes and a PR build on all pushes to an open PR, but will filter out any that don't meet the condition. You might need to modify this a bit - the clause about not building branches with no-ci somewhere in their name is obviously optional, and you may not have two branches that you always want to run builds on.

You can read more on conditions and conditional builds on Travis's site.

Solution 4 - Github

The whitelist approach described in the accepted answer has some significant limitations. In particular, it doesn't support non-redundantly building arbitrary branches without opening a PR.

I opened an issue asking for a better solution.

Solution 5 - Github

You can use next workflow if you want to test not only master branch but some others branches too:

  • Keep both "Build pushes" and "Build pull requests" ON

  • Add branches:except directive to your .travis.yml:

      branches:
        except:
          - /^pr\..*/
    

In this configuration:

  • any commit to branch feature-A will trigger the build
  • any commit to branch pr.feature-A will not trigger the build
  • if branch pr.feature-A is used in opened pull request then build will be triggered
Workflow example
  • temporary WIP branch shared between several developers: wip.feature-A, any commit to this branch will trigger the build
  • when branch is ready to be merged to master you can rename it from wip.feature-A to pr.feature-A and open pull request
  • if while reviewing pull request you want to apply new fixes, just push to pr.feature-A

On all the steps above only one build will be triggered.

Solution 6 - Github

For one of the repositories, I was working with, here is what I wanted:

There is an origin repo which is the main repo which does all the releases.

I wanted that all the pull requests coming to master branch of origin should be built with Travis only once irrespective of the fact that it comes from a forked repo or any other branch of the origin itself.

For this case, this works like a charm

if: (type == push) OR (type == pull_request AND fork == true)

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionBrian GerstleView Question on Stackoverflow
Solution 1 - GithubBrian GerstleView Answer on Stackoverflow
Solution 2 - GithubgrosserView Answer on Stackoverflow
Solution 3 - GithubCorey NoelView Answer on Stackoverflow
Solution 4 - GithubJohnView Answer on Stackoverflow
Solution 5 - Githubuser2288008View Answer on Stackoverflow
Solution 6 - Githubsarthakgupta072View Answer on Stackoverflow