view .travis.yml @ 2901:ce889887354f

Avoid non-portable == for the test command The test command doesn't accept `==` as operator. It should be a single `=` for portable use. The `==` is a gnu extension. Note that the x-trick hasn't been needed for a long, long time. You can reliably write it with quotes: ``` if test "$gtk3" = yes; then ``` but I left that alone since it doesn't hurt other than being ugly.
author Rhialto The M <Rhialto@users.noreply.github.com>
date Sat, 06 Oct 2018 18:26:43 +0200
parents 9e7284cfd7be
children
line wrap: on
line source

language: c
os: linux
dist: trusty
sudo: required
compiler:
  - gcc
  - clang
addons:
  apt:
    sources:
      - trusty
    packages:
      - autoconf
      - automake
      - autotools-dev
      - build-essential
      - debhelper
      - dh-autoreconf
      - dpkg-dev
      - gnome-doc-utils
      - gnome-doc-utils
      - imagemagick
      - intltool
      - libexiv2-dev
      - libgtk2.0-dev
      - libjpeg-dev
      - liblcms2-dev
      - liblircclient-dev
      - liblua5.1-0-dev
      - libtiff-dev
      - libtool
script: (CFLAGS= ./autogen.sh) && make