Skip to content

Commit

Permalink
patch 8.0.0077
Browse files Browse the repository at this point in the history
Problem:    The GUI code is not tested by Travis.
Solution:   Install the virtual framebuffer.
  • Loading branch information
brammool committed Nov 11, 2016
1 parent 79cbdcb commit e3505df
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,12 @@ before_install:
# Lua is not installed on Travis OSX
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install lua; export LUA_PREFIX=/usr/local; fi

# Start virtual framebuffer to be able to test the GUI.
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start

script:
- NPROC=$(getconf _NPROCESSORS_ONLN)
- if [ "$CHECK_AUTOCONF" = "yes" -a "$CC" = "gcc" ]; then make -C src autoconf; fi
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -764,6 +764,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
77,
/**/
76,
/**/
Expand Down

0 comments on commit e3505df

Please sign in to comment.