forked from giampaolo/psutil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cirrus.yml
31 lines (30 loc) · 901 Bytes
/
.cirrus.yml
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_12_1_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
- PSUTIL_TESTING=1 python3 -Wa scripts/internal/print_access_denied.py
- PSUTIL_TESTING=1 python3 -Wa scripts/internal/print_api_speed.py
freebsd_12_1_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
- PSUTIL_TESTING=1 python3 -Wa scripts/internal/print_access_denied.py
- PSUTIL_TESTING=1 python3 -Wa scripts/internal/print_api_speed.py