summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: aeee619121181c6339201090f350461792ace656 (plain)
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
36
language: c

os:
  - linux
  - osx

compiler:
  - gcc
  - clang

env:
    global:
        - PERL_BUILD_PACKAGING=1
    matrix:
        - CONFIGURE_ARGS='-Uusethreads'
        - CONFIGURE_ARGS='-Dusethreads'

matrix:
  exclude:
  - compiler: clang
    os: linux
  - compiler: gcc
    os: osx

script:
  - ./Configure -des -Dusedevel -Uversiononly -Dcc=$CC $CONFIGURE_ARGS -Dprefix=$HOME/perl-blead -DDEBUGGING && TEST_JOBS=8 make -j8 test_harness_notty && make -j8 install && $HOME/perl-blead/bin/perlivp

addons:
    apt:
        packages:
            - file
            - cpio
            - libdb-dev
            - libgdbm-dev
            - zlib1g-dev
            - libbz2-dev