small fixes for french translation (#5517)
[opentx.git] / .travis.yml
blob7dc694cfcb6453ed377e14d19759875ff74ae092
1 sudo: required
2 dist: trusty
3 language: python
4 compiler: gcc
6 virtualenv:
7   system_site_packages: true
9 python:
10   - 3.4
12 env:
13   global:
14     - QT_BASE=53
15     # - QT_BASE=54
16     # - QT_BASE=55
17     # - QT_BASE=56
18     # - QT_BASE=57
19     #- GCC_ARM=/opt/gcc-arm-none-eabi/bin
20     - AVR_FLAVORS="AVR9X 9X GRUVIN9X MEGA2560"
21     - PYTHONPATH=${PYTHONPATH}:/usr/lib/python3/dist-packages
22   matrix:
23     #
24     # ALL will build every individual board & DEFAULT, sequentially.
25     # DEFAULT is "make all" (including Companion & Simulator), with default settings
26     #
27     # - FLAVOR=ALL
28     - FLAVOR=DEFAULT
29     - FLAVOR=AVR9X
30     # - FLAVOR=9X
31     # - FLAVOR=GRUVIN9X
32     # - FLAVOR=MEGA2560
33     - FLAVOR=ARM9X
34     # - FLAVOR=AR9X
35     # - FLAVOR=SKY9X
36     # - FLAVOR=9XRPRO
37     - FLAVOR=X7
38     - FLAVOR=X9
39     # - FLAVOR=X9D
40     # - FLAVOR=X9D+
41     # - FLAVOR=X9E
42     - FLAVOR=HORUS
43     # - FLAVOR=X10
44     # - FLAVOR=X12Sr10
45     # - FLAVOR=X12S
47 before_install:
48   - sudo add-apt-repository ppa:ubuntu-sdk-team/ppa --yes
49   - sudo add-apt-repository ppa:terry.guo/gcc-arm-embedded --yes
50   - sudo add-apt-repository ppa:ubuntu-toolchain-r/test --yes
51   - if [ "$QT_BASE" = "53" ]; then sudo add-apt-repository ppa:beineri/opt-qt532-trusty -y; fi
52   - if [ "$QT_BASE" = "54" ]; then sudo add-apt-repository ppa:beineri/opt-qt542-trusty -y; fi
53   - if [ "$QT_BASE" = "55" ]; then sudo add-apt-repository ppa:beineri/opt-qt551-trusty -y; fi
54   - if [ "$QT_BASE" = "56" ]; then sudo add-apt-repository ppa:beineri/opt-qt562-trusty -y; fi
55   - if [ "$QT_BASE" = "57" ]; then sudo add-apt-repository ppa:beineri/opt-qt571-trusty -y; fi
56   - sudo apt-get update -qq
58 install:
59   - sudo apt-get --yes --force-yes install python3-pyqt5 curl libmpfr4 libmpc3 libfox-1.6-dev libgtest-dev
60   - |
61     if [[ " ${AVR_FLAVORS} " =~ " ${FLAVOR} " || ${FLAVOR} == "ALL" ]]; then
62       wget --quiet https://launchpad.net/ubuntu/+source/gcc-avr/1:4.9.2+Atmel3.5.0-1/+build/8403710/+files/gcc-avr_4.9.2+Atmel3.5.0-1_amd64.deb
63       wget --quiet https://launchpad.net/ubuntu/+source/avr-libc/1:1.8.0+Atmel3.5.0-1/+build/8435473/+files/avr-libc_1.8.0+Atmel3.5.0-1_all.deb
64       wget --quiet https://launchpad.net/ubuntu/+source/binutils-avr/2.25+Atmel3.5.0-2/+build/8435474/+files/binutils-avr_2.25+Atmel3.5.0-2_amd64.deb
65       sudo dpkg --install gcc-avr_4.9.2+Atmel3.5.0-1_amd64.deb avr-libc_1.8.0+Atmel3.5.0-1_all.deb binutils-avr_2.25+Atmel3.5.0-2_amd64.deb
66     fi
67     if [[ ! " ${AVR_FLAVORS} " =~ " ${FLAVOR} " || ${FLAVOR} == "ALL" ]]; then
68       sudo apt-get --yes --force-yes install gcc-arm-none-eabi
69       # Trying to build with gcc-arm 4.7 isn't working because it can't find the compiler, despite adding to PATH (in commit-tests.sh) by defining GCC_ARM above 
70       # - wget --quiet https://launchpad.net/gcc-arm-embedded/4.7/4.7-2013-q3-update/+download/gcc-arm-none-eabi-4_7-2013q3-20130916-linux.tar.bz2
71       # - tar xjf gcc-arm-none-eabi-4_7-2013q3-20130916-linux.tar.bz2
72       # - mv gcc-arm-none-eabi-4_7-2013q3 /opt/gcc-arm-none-eabi
73     fi
74   - sudo apt-get install --yes --force-yes -qq qt${QT_BASE}base qt${QT_BASE}multimedia qt${QT_BASE}svg qt${QT_BASE}tools; source /opt/qt${QT_BASE}/bin/qt${QT_BASE}-env.sh
76 addons:
77   sonarcloud:
78     organization: "opentx-github"
79     token:
80       secure: "BuQrGRijNpL2V/IQNcOxvjChj8PScfCdiv403EE73Nqb4+sB8YL92Fnzrnw9bC8wF7BVSDJVpYF0gbdaTzuCmaeZfM8NJK0TOJAbH6+B8bhIrU/V1SBuVjHQnndV/wysieruKnK/KxYJZqItgSlnPo+PmiFxtXJNlas0Kstb2O4="
81     # github_token:
82     #   secure: "Qkmp4VrQJtKgZ/pz65SNnCDiF4slgFfQS/3whyLXLcDbFb1Hv1oj7Hqz9EVDUSO2eEhgQGaOKkRc0CfAAOBwW6OvhE0xh7P1CJEjzOp6+3gI/LyZUNsqa+awVRZTsfm1YZaOPaPWJ7cI0uz3/OoSUeIecs4PDWPrQMGRlsrq7Q8="
83     branches:
84       - "2.2"
86 script:
87   - build-wrapper-linux-x86-64 --out-dir bw_output ./tools/commit-tests.sh
88   - sonar-scanner
90 cache:
91   directories:
92     - '$HOME/.sonar/cache'