Skip to content
Snippets Groups Projects
Select Git revision
  • 155c46e4f912817cbad380c4ae6650847636c798
  • master default protected
  • release/201811
  • release/201812
  • release/201901
  • release/201902
  • release/201903
  • release/201904
  • release/201905
  • release/201906
  • release/201908
  • release/201912
  • release/202001
  • release/202005
  • release/windows-test/201910
  • release/201808
  • wip/smartlist_refacto
  • wip/patches_poly_2017/JimmyHamel/MathieuGirouxHuppe
18 results

Converters.h

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    hudson-sflphone-script.sh 861 B
    #!/bin/bash
    #
    # Script used by Hudson continious integration server to build SFLphone
    #
    # Author: Emmanuel Milou <emmanuel.milou@savoirfairelinux.com>
    
    XML_RESULTS="cppunitresults.xml"
    
    set -x
     
    # Compile the daemon
    pushd sflphone-common
    ./autogen.sh
    # Compile pjproject first
    pushd libs/pjproject
    ./autogen.sh
    ./configure
    make && make dep
    popd
    ./configure --prefix=/usr
    make clean
    make -j
    make doc
    popd
    
    # Run the unit tests for the daemon
    pushd sflphone-common/test
    # Remove the previous XML test file
    rm -rf $XML_RESULTS
    make check
    # if at least one test failed, exit
    CODECS_PATH="../src/audio/codecs" FAKE_PLUGIN_DIR="../src/plug-in/test/" FAKE_PLUGIN_NAME="../src/plug-in/test/libplugintest.so" ./test --xml || exit 1
    popd
    
    # Compile the client
    pushd sflphone-client-gnome
    ./autogen.sh
    ./configure --prefix=/usr
    make clean
    make -j 1
    popd
    
    # SUCCESS
    exit 0