File: .travis.yml

package info (click to toggle)
matlab2tikz 1.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,620 kB
  • ctags: 1,074
  • sloc: objc: 6,143; makefile: 55; sh: 40
file content (16 lines) | stat: -rw-r--r-- 704 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
language: c++
before_install:
  - sudo add-apt-repository -y ppa:octave/stable
  - sudo apt-get update -qq
  - sudo apt-get install gdb # to capture backtrace of eventual failures
  - sudo apt-get install octave
  - sudo apt-get purge libopenblas-base # fixes PPA Octave 4.0 crash on Travis
before_script:
  - ulimit -c unlimited -S  # enable core dumps for Octave crash debugging
script:
  - ./runtests.sh /usr/bin/octave
notifications:
  hipchat: f4c2c5f87adc85025545e5b59b3fbe@Matlab2tikz
after_failure:
  - COREFILE=$(find . -maxdepth 1 -name "core*" | head -n 1) # find core file
  - gdb -c "$COREFILE" -ex "thread apply all bt" -ex "set pagination 0" -batch /usr/bin/octave-cli # print stack trace