File: .travis.yml

package info (click to toggle)
pcsx2 1.5.0~gfc1d9aef0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 27,240 kB
  • sloc: cpp: 298,152; ansic: 23,973; lisp: 1,346; asm: 908; sh: 755; perl: 754; xml: 116; makefile: 61
file content (35 lines) | stat: -rw-r--r-- 568 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
language: cpp

sudo: required

cache: ccache

matrix:
  include:
    - env: VERSION=8 BITS=64
      compiler: gcc
      os: linux
    - env: VERSION=8 BITS=32
      compiler: gcc
      os: linux
    - env: VERSION=7 BITS=32
      compiler: gcc
      os: linux
    - env: VERSION=4.9 BITS=32
      compiler: gcc
      os: linux
    - env: VERSION=3.8 BITS=32
      compiler: clang
      os: linux

before_install:
  - ./travis.sh before_install

before_script:
  - ./travis.sh before_script

script:
  - ./travis.sh script

after_success:
  - ./travis.sh after_success