kopia lustrzana https://github.com/stlink-org/stlink
30 wiersze
492 B
YAML
30 wiersze
492 B
YAML
sudo: true
|
|
language: c
|
|
addons:
|
|
apt:
|
|
sources:
|
|
# - llvm-toolchain-precise-3.8
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- clang
|
|
# - clang-3.8
|
|
- g++-5
|
|
- gcc-5
|
|
script:
|
|
- git fetch --tags
|
|
- printenv
|
|
- cmake --version
|
|
- ./.travis.sh
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
compiler: clang
|
|
# - os: linux
|
|
# compiler: clang-3.8
|
|
- os: linux
|
|
compiler: gcc-5
|
|
# - os: linux
|
|
# compiler: clang-3.8
|
|
- os: osx
|
|
compiler: clang
|