summaryrefslogtreecommitdiff
path: root/.cirrus.yml
blob: a68f3dc1675af3d6693fd72d79e33beb96d58b2b (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
37
38
39
40
41
42
43
44
45
46
env:
  CIRRUS_CLONE_DEPTH: 1
  ARCH: amd64

task:
  matrix:
      env:
        DEBUG_CONFIG: --enable-debug
      env:
        DEBUG_CONFIG: --disable-debug
  matrix:
    - env:
        PROF_CONFIG: --enable-prof
    - env:
        PROF_CONFIG: --disable-prof
  matrix:
    - name: 64-bit
      env:
        CC:
        CXX:
    - name: 32-bit
      env:
        CC: cc -m32
        CXX: c++ -m32
  matrix:
    - env:
        UNCOMMON_CONFIG:
    - env:
        UNCOMMON_CONFIG: --with-lg-page=16 --with-malloc-conf=tcache:false
  freebsd_instance:
    matrix:
      image: freebsd-13-0-release-amd64
  install_script:
    - sed -i.bak -e 's,pkg+http://pkg.FreeBSD.org/\${ABI}/quarterly,pkg+http://pkg.FreeBSD.org/\${ABI}/latest,' /etc/pkg/FreeBSD.conf
    - pkg upgrade -y
    - pkg install -y autoconf gmake
  script:
    - autoconf
    # We don't perfectly track freebsd stdlib.h definitions.  This is fine when
    # we count as a system header, but breaks otherwise, like during these
    # tests.
    - ./configure --with-jemalloc-prefix=ci_ ${DEBUG_CONFIG} ${PROF_CONFIG} ${UNCOMMON_CONFIG}
    - export JFLAG=`sysctl -n kern.smp.cpus`
    - gmake -j${JFLAG}
    - gmake -j${JFLAG} tests
    - gmake check