Skip to content

Commit

Permalink
Merge pull request #1589 from peternewman/0.10-travis-g++8-fix
Browse files Browse the repository at this point in the history
Try and fix the g++8 builds on Travis
  • Loading branch information
peternewman committed Nov 10, 2019
2 parents 33c3cb3 + 9d49a62 commit 95cb61c
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 11 deletions.
55 changes: 49 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,9 @@ matrix:
packages:
- *core_build_clang_latest
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-xenial-6.0
- sourceline: "ppa:ubuntu-toolchain-r/test"
- sourceline: "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-6.0 main"
key_url: "https://apt.llvm.org/llvm-snapshot.gpg.key"
- os: linux
dist: xenial
compiler: gcc
Expand All @@ -107,7 +108,7 @@ matrix:
packages:
- *core_build_gpp_latest
sources:
- ubuntu-toolchain-r-test
- sourceline: "ppa:ubuntu-toolchain-r/test"
- os: linux
dist: xenial
compiler: gcc
Expand All @@ -117,7 +118,7 @@ matrix:
packages:
- *core_build_gpp_latest
sources:
- ubuntu-toolchain-r-test
- sourceline: "ppa:ubuntu-toolchain-r/test"
- os: linux
dist: xenial
compiler: gcc
Expand All @@ -129,7 +130,7 @@ matrix:
- *core_build
- g++-4.9
sources:
- ubuntu-toolchain-r-test
- sourceline: "ppa:ubuntu-toolchain-r/test"
- os: linux
dist: xenial
env: TASK='doxygen'
Expand All @@ -140,7 +141,7 @@ matrix:
- doxygen
- graphviz
sources:
- ubuntu-toolchain-r-test
- sourceline: "ppa:ubuntu-toolchain-r/test"
- os: linux
dist: xenial
env: TASK='lint'
Expand Down Expand Up @@ -193,6 +194,48 @@ matrix:
packages:
- *base_build
allow_failures:
- os: osx
osx_image: xcode9.3
compiler: clang
env:
- TASK='compile'
- CPPUNIT='1.13'
- LIBFTDI='0'
- os: osx
osx_image: xcode9.3
compiler: clang
env:
- TASK='compile'
- CPPUNIT='1.14'
- LIBFTDI='0'
- os: osx
osx_image: xcode9.3
compiler: gcc
env:
- TASK='compile'
- CPPUNIT='1.13'
- LIBFTDI='0'
- os: osx
osx_image: xcode9.3
compiler: gcc
env:
- TASK='compile'
- CPPUNIT='1.14'
- LIBFTDI='0'
- os: osx
osx_image: xcode9.3
compiler: clang
env:
- TASK='compile'
- CPPUNIT='1.14'
- LIBFTDI='1'
- os: osx
osx_image: xcode9.3
compiler: gcc
env:
- TASK='compile'
- CPPUNIT='1.14'
- LIBFTDI='1'
- os: linux
dist: xenial
compiler: gcc
Expand Down
2 changes: 1 addition & 1 deletion include/ola/io/OutputStream.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* OutputStream.h
* A class that you can write structed data to.
* A class that you can write structured data to.
* Copyright (C) 2012 Simon Newton
*/

Expand Down
5 changes: 2 additions & 3 deletions plugins/osc/README
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,8 @@ Chapter 2, Plugin Boilerplate
2.1 Plugin ID
-------------

We need to reserve a plugin ID in common/protocol/Ola.proto . Before you pick a
plugin id please send a message to the open-lighting@googlegroups.com list so
we can co-ordinate plugin IDs.
We need to reserve a plugin ID in common/protocol/Ola.proto . Please see the
note in that file regarding how we coordinate assigning plugin IDs.

Once we've assigned a plugin id, we can run `make` in the top directory. This
will update include/ola/plugin_id.h. You'll notice plugin_id.h isn't included
Expand Down
1 change: 0 additions & 1 deletion tools/rdm/TestDefinitions.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,6 @@ class DUBSingleUID(TestMixins.DiscoveryMixin,
ResponderTestFixture):
"""Confirm the device responds to just it's own range."""
CATEGORY = TestCategory.NETWORK_MANAGEMENT
CATEGORY = TestCategory.NETWORK_MANAGEMENT
REQUIRES = ['dub_supported'] + TestMixins.DiscoveryMixin.REQUIRES

def LowerBound(self):
Expand Down

0 comments on commit 95cb61c

Please sign in to comment.