summaryrefslogtreecommitdiff
path: root/.cirrus.yml
blob: a0b8f1f0b329a57ad52644e6e45dac722a350850 (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
    - make clean
    - make install
    - make test
    - 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
    - make clean
    - make install
    - make test
    - make test-memleaks
    - make print-access-denied
    - make print-api-speed