aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorFabio Utzig <utzig@utzig.org>2016-10-17 12:01:37 +0000
committerFabio Utzig <utzig@utzig.org>2016-10-17 12:01:37 +0000
commitb44d7bed91116ccddc1d018781eede3d187aad42 (patch)
treefca10fca060c10bf079f004547a72852eef7a2b6 /tools
parent86e02ab475c5b278cb730012b6528738b0c6c6ee (diff)
downloadChibiOS-b44d7bed91116ccddc1d018781eede3d187aad42.tar.gz
ChibiOS-b44d7bed91116ccddc1d018781eede3d187aad42.tar.bz2
ChibiOS-b44d7bed91116ccddc1d018781eede3d187aad42.zip
Fixed collision in multi-byte SPI write
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9865 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'tools')
0 files changed, 0 insertions, 0 deletions
f='#n118'>118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
sudo: false
language: cpp

cache:
 ccache: true
 directories:
  - ~/.local-bin


env:
  global:
    - MAKEFLAGS="-j 2"

matrix:
  include:
    # Latest gcc-4.8, earliest version supported by Travis
    - os: linux
      addons:
        apt:
          packages:
            - g++-4.8
            - gperf
            - build-essential
            - bison
            - flex
            - libreadline-dev
            - gawk
            - tcl-dev
            - libffi-dev
            - git
            - mercurial
            - graphviz
            - xdot
            - pkg-config
            - python
      env:
        - MATRIX_EVAL="CONFIG=gcc && CC=gcc-4.8 && CXX=g++-4.8"

    # Latest gcc-6 on Travis Linux
    - os: linux
      addons:
        apt:
          sources:
            - ubuntu-toolchain-r-test
          packages:
            - g++-6
            - gperf
            - build-essential
            - bison
            - flex
            - libreadline-dev
            - gawk
            - tcl-dev
            - libffi-dev
            - git
            - mercurial
            - graphviz
            - xdot
            - pkg-config
            - python
      env:
        - MATRIX_EVAL="CONFIG=gcc && CC=gcc-6 && CXX=g++-6"

    # Latest gcc supported on Travis Linux
    - os: linux
      addons:
        apt:
          sources:
            - ubuntu-toolchain-r-test
          packages:
            - g++-7
            - gperf
            - build-essential
            - bison
            - flex
            - libreadline-dev
            - gawk
            - tcl-dev
            - libffi-dev
            - git
            - mercurial
            - graphviz
            - xdot
            - pkg-config
            - python
      env:
        - MATRIX_EVAL="CONFIG=gcc && CC=gcc-7 && CXX=g++-7"

    # Clang which ships on Trusty Linux
    - os: linux
      addons:
        apt:
          sources:
            - ubuntu-toolchain-r-test
            - llvm-toolchain-precise-3.8
          packages:
            - clang-3.8
            - gperf
            - build-essential
            - bison
            - flex
            - libreadline-dev
            - gawk
            - tcl-dev
            - libffi-dev
            - git
            - mercurial
            - graphviz
            - xdot
            - pkg-config
            - python
      env:
        - MATRIX_EVAL="CONFIG=clang && CC=clang-3.8 && CXX=clang++-3.8"

    # Latest clang supported by Travis Linux
    - os: linux
      addons:
        apt:
          sources:
            - llvm-toolchain-trusty-5.0
          packages:
            - clang-5.0
            - gperf
            - build-essential
            - bison
            - flex
            - libreadline-dev
            - gawk
            - tcl-dev
            - libffi-dev
            - git
            - mercurial
            - graphviz
            - xdot
            - pkg-config
            - python
      env:
        - MATRIX_EVAL="CONFIG=clang && CC=clang-5.0 && CXX=clang++-5.0"

    # Latest clang on Mac OS X
    - os: osx
      osx_image: xcode8
      env:
        - MATRIX_EVAL="CONFIG=gcc && CC=gcc-7 && CXX=g++-7"

before_install:
  - ./.travis/setup.sh

script:
  - ./.travis/build-and-test.sh

after_success:
  - ./.travis/deploy-after-success.sh