mirror of
https://github.com/eclipse/upm.git
synced 2025-03-15 04:57:30 +03:00

Signed-off-by: Nicolas Oliver <dario.n.oliver@intel.com> Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
35 lines
600 B
YAML
35 lines
600 B
YAML
sudo: required
|
|
|
|
language: cpp
|
|
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
|
|
env:
|
|
- TARGET=doc
|
|
- TARGET=examples
|
|
- TARGET=python2
|
|
- TARGET=python3
|
|
- TARGET=java
|
|
- TARGET=node4
|
|
- TARGET=node5
|
|
|
|
matrix:
|
|
exclude:
|
|
- compiler: clang
|
|
env: TARGET=java
|
|
|
|
services:
|
|
- docker
|
|
|
|
before_script:
|
|
- if [ "$CC" == "gcc" ]; then export CC=gcc-4.8; fi
|
|
- if [ "$CXX" == "g++" ]; then export CXX=g++-4.8; fi
|
|
- if [ "$CC" == "clang" ]; then export CC=clang-3.8; fi
|
|
- if [ "$CXX" == "clang++" ]; then export CXX=clang++-3.8; fi
|
|
- docker-compose build ${TARGET}
|
|
|
|
script:
|
|
- docker-compose run ${TARGET}
|