1. 27 Jan, 2016 1 commit
  2. 14 Dec, 2015 1 commit
  3. 23 Nov, 2015 1 commit
  4. 28 Oct, 2015 1 commit
  5. 17 Oct, 2015 1 commit
  6. 12 May, 2015 1 commit
    • Juan Batiz-Benet's avatar
      travis-ci: make test_all_commits · 482a492a
      Juan Batiz-Benet authored
      After losing jenkins, it's been difficult to test all commits
      manually. This commit adds a Makefile target that makes travis do it.
      Unfortunately, this is way too slow. It takes longer than the
      allotted 10min.
      
      After asking the travis people what to do, someone suggested making
      sure that each commit is pushed to github independently. This makes
      travis run CI on every single commit in the PR, and gives us nice
      status indicators on each one (so we know which ones did not pass).
      
      This approach means that we need to push a branch to the repo for
      each commit in the PR-- otherwise travis may cancel its run if it
      detects that the branch is no longer there. We could automate this
      with a bot that essentially does:
      
        for each PR:
          git fetch the PR branch
          push a branch per commit: <branch>-<commit>
      
        for each closed PR:
          delete all branches with pattern <branch>-<commit>
      482a492a
  7. 18 Mar, 2015 1 commit
  8. 05 Mar, 2015 1 commit
  9. 27 Feb, 2015 1 commit
  10. 13 Jan, 2015 1 commit
  11. 07 Jan, 2015 2 commits
  12. 06 Jan, 2015 1 commit
  13. 05 Jan, 2015 2 commits
    • Juan Batiz-Benet's avatar
      `make test` now runs expensive tests. · f6def11e
      Juan Batiz-Benet authored
      We use make test as the measure of correctness.
      This laxity has let bugs creep into several systems.
      This commit changes our target to always run expensive
      tests, unless one specifically runs `make test_short`
      
      (we would do well to remove most if not all timing--
      that's usually what makes tests take a long time.)
      f6def11e
    • Juan Batiz-Benet's avatar
      makefile fix: order of env vars · 3510a827
      Juan Batiz-Benet authored
      3510a827
  14. 23 Dec, 2014 2 commits
  15. 15 Dec, 2014 1 commit
  16. 09 Dec, 2014 1 commit
  17. 22 Nov, 2014 1 commit
  18. 18 Nov, 2014 1 commit
  19. 14 Nov, 2014 2 commits
  20. 07 Nov, 2014 2 commits
  21. 10 Sep, 2014 1 commit
    • Brian Tiger Chow's avatar
      vendor dependencies with godep · 7968b45e
      Brian Tiger Chow authored
      dependencies are vendored into Godeps/_workspace and commit versions are
      recorded in Godeps.json
      
      update datastore to e89f0511
      update go.crypto
      7968b45e