-
Notifications
You must be signed in to change notification settings - Fork 1
/
.cirrus.yml
41 lines (41 loc) · 1.23 KB
/
.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
32
33
34
35
36
37
38
39
40
41
task:
matrix:
- name: FreeBSD 12.1
freebsd_instance:
image_family: freebsd-12-1
install_script:
- env IGNORE_OSVERSION=yes pkg update -f
- pkg install -y ccache python3
build_cache:
folder: /usr/obj
script:
- python3 setup.py build
- python3 setup.py bdist
- sudo python3 setup.py install
- python3 -m unittest discover tests '*.py'
- name: FreeBSD 12.2
freebsd_instance:
image_family: freebsd-12-2
install_script:
- env IGNORE_OSVERSION=yes pkg update -f
- pkg install -y ccache python3
build_cache:
folder: /usr/obj
script:
- python3 setup.py build
- python3 setup.py bdist
- sudo python3 setup.py install
- python3 -m unittest discover tests '*.py'
- name: FreeBSD 13.0 (snap)
freebsd_instance:
image_family: freebsd-13-0-snap
install_script:
- env IGNORE_OSVERSION=yes pkg update -f
- pkg install -y ccache python3
build_cache:
folder: /usr/obj
script:
- python3 setup.py build
- python3 setup.py bdist
- sudo python3 setup.py install
- python3 -m unittest discover tests '*.py'