summaryrefslogtreecommitdiff
path: root/.cirrus.yml
blob: 129644c517610fe58b6264e5dac82ddc12199fad (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
freebsd_13_py3_task:
  freebsd_instance:
    image: freebsd-12-1-release-amd64
  env:
    CIRRUS: 1
  install_script:
    - pkg install -y python3 gcc py37-pip
  script:
    - python3 -m pip install --user setuptools concurrencytest
    - make clean
    - make install
    - make test-parallel
    - make test-memleaks
    - make print-access-denied
    - make print-api-speed

freebsd_11_py2_task:
  freebsd_instance:
    image: freebsd-12-1-release-amd64
  env:
    CIRRUS: 1
  install_script:
    - pkg install -y python gcc py27-pip
  script:
    - python2.7 -m pip install --user setuptools ipaddress mock concurrencytest
    - make clean
    - make install
    - make test-parallel
    - make test-memleaks
    - make print-access-denied
    - make print-api-speed