Joe Drago | 4e882ec | 2019-01-28 10:46:13 -0800 | [diff] [blame] | 1 | language: c |
| 2 | |
| 3 | os: linux |
| 4 | |
| 5 | matrix: |
| 6 | include: |
| 7 | - name: "GCC Debug" |
| 8 | compiler: gcc |
| 9 | addons: |
| 10 | apt: |
| 11 | packages: |
| 12 | - nasm |
| 13 | before_script: |
Joe Drago | fb0b370 | 2019-07-22 22:48:24 -0700 | [diff] [blame] | 14 | - cd ext |
| 15 | - bash aom.cmd |
| 16 | - cd .. |
Joe Drago | 4e882ec | 2019-01-28 10:46:13 -0800 | [diff] [blame] | 17 | - mkdir build |
| 18 | - cd build |
Joe Drago | fb0b370 | 2019-07-22 22:48:24 -0700 | [diff] [blame] | 19 | - cmake -DCMAKE_BUILD_TYPE=Debug -DAVIF_BUILD_AOM=1 .. |
Joe Drago | 4e882ec | 2019-01-28 10:46:13 -0800 | [diff] [blame] | 20 | script: |
| 21 | - make |
| 22 | |
| 23 | - name: "GCC Release" |
| 24 | compiler: gcc |
| 25 | addons: |
| 26 | apt: |
| 27 | packages: |
| 28 | - nasm |
| 29 | before_script: |
Joe Drago | fb0b370 | 2019-07-22 22:48:24 -0700 | [diff] [blame] | 30 | - cd ext |
| 31 | - bash aom.cmd |
| 32 | - cd .. |
Joe Drago | 4e882ec | 2019-01-28 10:46:13 -0800 | [diff] [blame] | 33 | - mkdir build |
| 34 | - cd build |
Joe Drago | fb0b370 | 2019-07-22 22:48:24 -0700 | [diff] [blame] | 35 | - cmake -DCMAKE_BUILD_TYPE=Release -DAVIF_BUILD_AOM=1 .. |
Joe Drago | 4e882ec | 2019-01-28 10:46:13 -0800 | [diff] [blame] | 36 | script: |
| 37 | - make |
| 38 | |
| 39 | - name: "Clang Debug" |
| 40 | compiler: clang |
| 41 | addons: |
| 42 | apt: |
| 43 | packages: |
| 44 | - nasm |
| 45 | before_script: |
Joe Drago | fb0b370 | 2019-07-22 22:48:24 -0700 | [diff] [blame] | 46 | - cd ext |
| 47 | - bash aom.cmd |
| 48 | - cd .. |
Joe Drago | 4e882ec | 2019-01-28 10:46:13 -0800 | [diff] [blame] | 49 | - mkdir build |
| 50 | - cd build |
Joe Drago | fb0b370 | 2019-07-22 22:48:24 -0700 | [diff] [blame] | 51 | - cmake -DCMAKE_BUILD_TYPE=Debug -DAVIF_BUILD_AOM=1 .. |
Joe Drago | 4e882ec | 2019-01-28 10:46:13 -0800 | [diff] [blame] | 52 | script: |
| 53 | - make |
| 54 | |
| 55 | - name: "Clang Release" |
| 56 | compiler: clang |
| 57 | addons: |
| 58 | apt: |
| 59 | packages: |
| 60 | - nasm |
| 61 | before_script: |
Joe Drago | fb0b370 | 2019-07-22 22:48:24 -0700 | [diff] [blame] | 62 | - cd ext |
| 63 | - bash aom.cmd |
| 64 | - cd .. |
Joe Drago | 4e882ec | 2019-01-28 10:46:13 -0800 | [diff] [blame] | 65 | - mkdir build |
| 66 | - cd build |
Joe Drago | fb0b370 | 2019-07-22 22:48:24 -0700 | [diff] [blame] | 67 | - cmake -DCMAKE_BUILD_TYPE=Release -DAVIF_BUILD_AOM=1 .. |
Joe Drago | 4e882ec | 2019-01-28 10:46:13 -0800 | [diff] [blame] | 68 | script: |
| 69 | - make |