-
Notifications
You must be signed in to change notification settings - Fork 10
/
.cirrus.yml
31 lines (29 loc) · 881 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
env:
CIRRUS_CLONE_DEPTH: 1
freebsd_task:
freebsd_instance:
matrix:
image: freebsd-11-2-release-amd64
image: freebsd-12-1-release-amd64
install_script: pkg install -y git py27-yaml
script:
- fetch http://tetworks.opengroup.org/downloads/38/software/Sources/3.8/tet3.8-src.tar.gz
- tar -x -C test/tet -f tet3.8-src.tar.gz
- make
test_script:
- make run-tests
ubuntu_task:
container:
image: ubuntu:18.04
setup_script:
- apt-get update
- apt-get install -y
binutils bison bmake curl flex g++ gcc git
libarchive-dev libbsd-dev libc6-dev libexpat1-dev lsb-release
m4 perl python-yaml sharutils zlib1g-dev
script:
- curl -O http://tetworks.opengroup.org/downloads/38/software/Sources/3.8/tet3.8-src.tar.gz
- tar -x -C test/tet -z -f tet3.8-src.tar.gz
- bmake
test_script:
- bmake run-tests