Skip to content
  1. Jul 07, 2017
  2. Jul 04, 2017
  3. Jun 21, 2017
  4. Jun 20, 2017
  5. Jun 06, 2017
  6. Jun 03, 2017
  7. Mar 22, 2017
  8. Aug 03, 2016
  9. Aug 01, 2016
  10. Jul 28, 2016
  11. Aug 21, 2015
  12. Aug 20, 2015
  13. Mar 10, 2015
    • Jay Satiro's avatar
      .travis.yml: Change CI make test to make test-full · e424a1b3
      Jay Satiro authored
      - Change the continuous integration script to use 'make test-full'
      instead of just 'make test' so that the diagnostic log output is
      printed to stdout when a test fails.
      
      - Change the continuous integration script to use
      './configure --enable-debug' instead of just './configure' so that the
      memory analyzer will work during testing.
      
      Prior to this change Travis used its default C test script:
      ./configure && make && make test
      e424a1b3
  14. Oct 21, 2013
    • Rémy Léone's avatar
      Adding a .travis.yml file to use the travis-ci.org · be31924f
      Rémy Léone authored
      From wikipedia:
      
      Travis CI is a hosted, distributed continuous integration service used
      to build and test projects hosted at GitHub.
      
      Travis CI is configured by adding a file named .travis.yml, which is a
      YAML format text file, to the root directory of the GitHub repository.
      
      Travis CI automatically detects when a commit has been made and pushed
      to a GitHub repository that is using Travis CI, and each time this
      happens, it will try to build the project and run tests. This includes
      commits to all branches, not just to the master branch. When that
      process has completed, it will notify a developer in the way it has been
      configured to do so — for example, by sending an email containing the
      test results (showing success or failure), or by posting a message on an
      IRC channel. It can be configured to run the tests on a range of
      different machines, with different software installed (such as older
      versions of a programming language, to test for compatibility).
      be31924f