Edit

kc3-lang/libqrencode/.travis.yml

Branch :

  • Show log

    Commit

  • Author : Kentaro Fukuchi
    Date : 2017-09-07 15:25:50
    Hash : 6af0665b
    Message : Configuration improved.

  • .travis.yml
  • dist: trusty
    sudo: required
    language: c
     
    compiler:
    - gcc
    
    before_install:
    - sudo apt-get update
    - sudo apt-get install libpng12-dev
    
    install:
    - ./autogen.sh
    - ./configure --with-tests && make
    - sudo make install
    - mkdir build && cd build
    - cmake .. -DWITH_TESTS=yes -DBUILD_SHARED_LIBS=on && make
    - DESTDIR=$PWD/install make install
    
    script:
    - cd $TRAVIS_BUILD_DIR/tests
    - ./test_all.sh
    - cd $TRAVIS_BUILD_DIR/build/tests
    - cp $TRAVIS_BUILD_DIR/tests/frame ./
    - make test