1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-07 12:20:39 -08:00

Install dc (the unix desk calculator) so that testratio can compute performance ratios.

Copied from Perforce
 Change: 191352
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Gareth Rees 2016-04-20 13:53:15 +01:00
parent 655e358db4
commit 6f675c3862

View file

@ -18,3 +18,7 @@ notifications:
irc: "irc.freenode.net#memorypoolsystem"
script:
- ./configure --prefix=$PWD/prefix && make install && make test
before_install:
- if test "$TRAVIS_OS_NAME" = "linux"; then sudo apt-get -qq update; fi
# dc is used by testratio to compute performance ratios.
- if test "$TRAVIS_OS_NAME" = "linux"; then sudo apt-get install -y dc; fi