1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-02 16:49:41 +02:00
audacity/.travis.yml
Pokechu22 e4875cf873 Add Portmidi dependencies (libasound2-dev, alsa-utils, alsa-oss) to travis
I chose to use libasound2-dev, alsa-utils, and alsa-oss instead of libportmidi-dev because I'd rather the local version was used.
2017-07-04 07:50:16 -04:00

21 lines
633 B
YAML

addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
- gcc-4.9
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libwxgtk3.0-dev libgtk2.0-dev gettext libasound2-dev alsa-utils alsa-oss
- git show -s --format="#define REV_LONG \"%H\"%n#define REV_TIME \"%cd\"%n" | tee ./src/RevisionIdent.h
- export CXX="g++-4.9" CC="gcc-4.9"
- FLAGS="-w -std=gnu++11"
- export CFLAGS="$CFLAGS $FLAGS"
- export CXXFLAGS="$CXXFLAGS $FLAGS"
- g++-4.9 --version
language:
- cpp
script:
- time ./configure && time make -j2