1. 09 May, 2016 1 commit
  2. 04 May, 2016 2 commits
  3. 28 Apr, 2016 1 commit
    • Kevin Atkinson's avatar
      Refactor Makefile. · 31421aea
      Kevin Atkinson authored
      Move the go commands that should run under cmd/ipfs in the Makefile in
      cmd/ipfs rather than doing a "cd cmd/ipfs && go ..." in the root
      Makefile.
      
      The "cd cmd/ipfs && go ..." lines causes problems with GNU Emacs's
      compilation mode.  With the current setup Emacs is unable to jump to
      the location of the error outputted by go compiler as it can not find
      the source file.  The problem is that the embedded "cd" command causes
      Emacs's compilation mode to lose track of the current directory and
      thus attempts to look for the source file in the wrong directory.
      
      License: MIT
      Signed-off-by: default avatarKevin Atkinson <k@kevina.org>
      31421aea
  4. 27 Apr, 2016 1 commit
  5. 13 Apr, 2016 1 commit
  6. 28 Mar, 2016 1 commit
  7. 10 Mar, 2016 2 commits
  8. 02 Mar, 2016 1 commit
  9. 01 Mar, 2016 1 commit
  10. 27 Feb, 2016 1 commit
  11. 24 Feb, 2016 3 commits
  12. 23 Feb, 2016 2 commits
  13. 14 Feb, 2016 1 commit
  14. 06 Feb, 2016 1 commit
  15. 05 Feb, 2016 1 commit
  16. 30 Jan, 2016 3 commits
  17. 27 Jan, 2016 1 commit
  18. 14 Dec, 2015 1 commit
  19. 23 Nov, 2015 1 commit
  20. 28 Oct, 2015 1 commit
  21. 17 Oct, 2015 1 commit
  22. 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
  23. 18 Mar, 2015 1 commit
  24. 05 Mar, 2015 1 commit
  25. 27 Feb, 2015 1 commit
  26. 13 Jan, 2015 1 commit
  27. 07 Jan, 2015 2 commits
  28. 06 Jan, 2015 1 commit
  29. 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
  30. 23 Dec, 2014 2 commits