Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: scanse/sweep-sdk
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1651c1318c0edad49d294895cb8f6c5939fcdae9
Choose a base ref
..
head repository: scanse/sweep-sdk
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d8f57576d4dd73aa18329ad66f53f62a851f9cb3
Choose a head ref
Showing with 3 additions and 11 deletions.
  1. +3 −11 .travis.yml
14 changes: 3 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -11,31 +11,23 @@ matrix:
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-6', 'cmake', 'python3', 'nodejs', 'npm', 'libsfml-dev']
packages: ['g++-6', 'cmake', 'python3', 'nodejs', 'npm', 'libsfml-dev', 'libprotobuf-dev', 'protobuf-compiler', 'libzmq-dev']
env: CCOMPILER='gcc-6' CXXCOMPILER='g++-6'

- os: linux
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-5', 'cmake', 'python3', 'nodejs', 'npm', 'libsfml-dev']
packages: ['g++-5', 'cmake', 'python3', 'nodejs', 'npm', 'libsfml-dev', 'libprotobuf-dev', 'protobuf-compiler', 'libzmq-dev']
env: CCOMPILER='gcc-5' CXXCOMPILER='g++-5'

- os: linux
addons:
apt:
sources: ['llvm-toolchain-precise-3.8']
packages: ['clang-3.8', 'cmake', 'python3', 'nodejs', 'npm', 'libsfml-dev']
packages: ['clang-3.8', 'cmake', 'python3', 'nodejs', 'npm', 'libsfml-dev', 'libprotobuf-dev', 'protobuf-compiler', 'libzmq-dev']
env: CCOMPILER='clang-3.8' CXXCOMPILER='clang++-3.8'

# Waiting on Travis whitelisting 3.9, see https://github.com/travis-ci/apt-source-whitelist/issues/300
#- os: linux
# addons:
# apt:
# sources: ['llvm-toolchain-precise-3.9']
# packages: ['clang-3.9']
# env: CCOMPILER='clang-3.9' CXXCOMPILER='clang++-3.9'


before_install:
- export CC=${CCOMPILER} CXX=${CXXCOMPILER}