Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

travis-ci: minor updates #865

Merged
merged 3 commits into from
Oct 24, 2016
Merged

Commits on Oct 21, 2016

  1. travis-ci: update build requirements

    Remove libjson-c and munge from travis-dep-builder.sh.
    
    Add libmunge-dev to apt packages to install with travis.
    grondo committed Oct 21, 2016
    Configuration menu
    Copy the full SHA
    a25a16c View commit details
    Browse the repository at this point in the history
  2. test: backtrace-all.sh: fix backtrace for exec in PATH

    When executable causing backtrace is in PATH, and thus doesn't have
    a relative or absolute path recorded in the corefile, the
    backtrace-all script would fail to list a backtrace because
    `test -x $exe` was failing. Precede the check with a `which $exe`
    to translate an executable name to a path.
    
    Also, quote around '*.core' in case there are one or more corefiles
    in the current directory.
    grondo committed Oct 21, 2016
    Configuration menu
    Copy the full SHA
    1476b25 View commit details
    Browse the repository at this point in the history
  3. travis-ci: do not run coverity-scan for every build target

    Avoid running coverity scan on every matrix build, just run once.
    
    Also, there is no need to run the regular build after a scan
    is complete, so short circuit that as well in the beginning of script:.
    grondo committed Oct 21, 2016
    Configuration menu
    Copy the full SHA
    a15f242 View commit details
    Browse the repository at this point in the history