Browse Source

Travis: Add jobs building with clang

tags/v0.3.0
Jakub Jirutka 8 years ago
parent
commit
dfb91f2a31
1 changed files with 14 additions and 1 deletions
  1. +14
    -1
      .travis.yml

+ 14
- 1
.travis.yml View File

@@ -3,12 +3,12 @@
dist: precise
sudo: false
language: c
compiler: gcc

jobs:
include:
- &test-ubuntu
stage: test
compiler: gcc
addons:
apt:
packages:
@@ -35,6 +35,18 @@ jobs:
- TARGET_BOX=LINUX64
- BTYPE="BINARY=64 INTERFACE64=1"

- <<: *test-ubuntu
compiler: clang
env:
- TARGET_BOX=LINUX64
- BTYPE="BINARY=64 CC=clang"

- <<: *test-ubuntu
compiler: clang
env:
- TARGET_BOX=LINUX64
- BTYPE="BINARY=64 INTERFACE64=1 CC=clang"

- <<: *test-ubuntu
addons:
apt:
@@ -46,6 +58,7 @@ jobs:
- BTYPE="BINARY=32"

- stage: test
compiler: gcc
addons:
apt:
packages:


Loading…
Cancel
Save