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 dist: precise
sudo: false sudo: false
language: c language: c
compiler: gcc


jobs: jobs:
include: include:
- &test-ubuntu - &test-ubuntu
stage: test stage: test
compiler: gcc
addons: addons:
apt: apt:
packages: packages:
@@ -35,6 +35,18 @@ jobs:
- TARGET_BOX=LINUX64 - TARGET_BOX=LINUX64
- BTYPE="BINARY=64 INTERFACE64=1" - 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 - <<: *test-ubuntu
addons: addons:
apt: apt:
@@ -46,6 +58,7 @@ jobs:
- BTYPE="BINARY=32" - BTYPE="BINARY=32"


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


Loading…
Cancel
Save