blob: c038653e76f02b95693ce5b460324d1005fe8cbf [file] [log] [blame]
Joe Drago4e882ec2019-01-28 10:46:13 -08001language: c
2
3os: linux
4
5matrix:
6 include:
7 - name: "GCC Debug"
8 compiler: gcc
9 addons:
10 apt:
11 packages:
12 - nasm
13 before_script:
Joe Dragofb0b3702019-07-22 22:48:24 -070014 - cd ext
15 - bash aom.cmd
16 - cd ..
Joe Drago4e882ec2019-01-28 10:46:13 -080017 - mkdir build
18 - cd build
Joe Dragofb0b3702019-07-22 22:48:24 -070019 - cmake -DCMAKE_BUILD_TYPE=Debug -DAVIF_BUILD_AOM=1 ..
Joe Drago4e882ec2019-01-28 10:46:13 -080020 script:
21 - make
22
23 - name: "GCC Release"
24 compiler: gcc
25 addons:
26 apt:
27 packages:
28 - nasm
29 before_script:
Joe Dragofb0b3702019-07-22 22:48:24 -070030 - cd ext
31 - bash aom.cmd
32 - cd ..
Joe Drago4e882ec2019-01-28 10:46:13 -080033 - mkdir build
34 - cd build
Joe Dragofb0b3702019-07-22 22:48:24 -070035 - cmake -DCMAKE_BUILD_TYPE=Release -DAVIF_BUILD_AOM=1 ..
Joe Drago4e882ec2019-01-28 10:46:13 -080036 script:
37 - make
38
39 - name: "Clang Debug"
40 compiler: clang
41 addons:
42 apt:
43 packages:
44 - nasm
45 before_script:
Joe Dragofb0b3702019-07-22 22:48:24 -070046 - cd ext
47 - bash aom.cmd
48 - cd ..
Joe Drago4e882ec2019-01-28 10:46:13 -080049 - mkdir build
50 - cd build
Joe Dragofb0b3702019-07-22 22:48:24 -070051 - cmake -DCMAKE_BUILD_TYPE=Debug -DAVIF_BUILD_AOM=1 ..
Joe Drago4e882ec2019-01-28 10:46:13 -080052 script:
53 - make
54
55 - name: "Clang Release"
56 compiler: clang
57 addons:
58 apt:
59 packages:
60 - nasm
61 before_script:
Joe Dragofb0b3702019-07-22 22:48:24 -070062 - cd ext
63 - bash aom.cmd
64 - cd ..
Joe Drago4e882ec2019-01-28 10:46:13 -080065 - mkdir build
66 - cd build
Joe Dragofb0b3702019-07-22 22:48:24 -070067 - cmake -DCMAKE_BUILD_TYPE=Release -DAVIF_BUILD_AOM=1 ..
Joe Drago4e882ec2019-01-28 10:46:13 -080068 script:
69 - make