forked from musescore/MuseScore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
32 lines (30 loc) · 1.06 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
before_install:
# rm the rabbitmq source file since it currently times out and we don't need it
- "sudo rm -f /etc/apt/sources.list.d/rabbitmq-source.list"
- "sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test"
- "sudo apt-get -q update"
- "sudo apt-get install -y g++-4.7"
- "sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.7 40 --slave /usr/bin/g++ g++ /usr/bin/g++-4.7"
- "sudo apt-get install -y libqt4-dev"
- "sudo apt-get install -y alsa libsndfile1 wget make ant curl cmake"
- "sudo apt-get install -y libasound2-dev portaudio19-dev libsndfile1-dev zlib1g-dev libfreetype6-dev libfontconfig-dev"
- "sudo apt-get install -y lame libmp3lame-dev"
before_script:
- "make revision"
- "make debug CPUS=16"
- "sudo make installdebug"
- "cd build.debug/mtest"
- "make -j 4"
script:
- "../../build/run_tests.sh"
notifications:
recipients:
- build@musescore.org
email:
on_success: change
on_failure: always
irc:
channels:
- "irc.freenode.net#musescore"
on_success: change
on_failure: change