Skip to content

Commit 458ab77

Browse files
committed
Make travis do all the builds again
Travis was only using the last env section, not merged them and was only doing one build using gcc instead of six builds (gcc, clang, mingw, ..).
1 parent 7de09c3 commit 458ab77

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.travis.yml

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
language: c
22

33
env:
4-
# standard builds
5-
- CC=gcc
6-
- CC=clang
7-
# extra libs
8-
- CC=gcc USE_CODEC_VORBIS=1 USE_FREETYPE=1
9-
- CC=clang USE_CODEC_VORBIS=1 USE_FREETYPE=1
10-
# cross-compile using mingw
11-
- CC= PLATFORM="mingw32" ARCH="x86"
12-
- CC= PLATFORM="mingw32" ARCH="x86_64"
4+
global:
5+
# coverity token
6+
- secure: "a2pGsG/+LS12sD/vgCF912TKBDDiT8PwRTH50eE94trQoHmD+bubIc4mXR9rSuU/NKNPdn6KZlqrVkVuoIanjYaf+rg28VavGMcBrtVO2cI1yjTUxb5Eq/cT20m3KfZCSFw3iWXfiK1CpDkm9Pdrr2Yz99EGZse3Y6jRGJ6giWM="
7+
matrix:
8+
# standard builds
9+
- CC=gcc
10+
- CC=clang
11+
# extra libs
12+
- CC=gcc USE_CODEC_VORBIS=1 USE_FREETYPE=1
13+
- CC=clang USE_CODEC_VORBIS=1 USE_FREETYPE=1
14+
# cross-compile using mingw
15+
- CC= PLATFORM="mingw32" ARCH="x86"
16+
- CC= PLATFORM="mingw32" ARCH="x86_64"
1317

1418
script: ./travis-ci-build.sh
1519

@@ -22,10 +26,6 @@ before_install:
2226
notifications:
2327
email: false
2428

25-
env:
26-
global:
27-
- secure: "a2pGsG/+LS12sD/vgCF912TKBDDiT8PwRTH50eE94trQoHmD+bubIc4mXR9rSuU/NKNPdn6KZlqrVkVuoIanjYaf+rg28VavGMcBrtVO2cI1yjTUxb5Eq/cT20m3KfZCSFw3iWXfiK1CpDkm9Pdrr2Yz99EGZse3Y6jRGJ6giWM="
28-
2929
addons:
3030
coverity_scan:
3131
project:

0 commit comments

Comments
 (0)