blob: c62dbd769aa99ea8bc94fb6484ba683e76250297 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
image: openbsd/latest
sources:
- https://git.sr.ht/~mcf/cproc
- git://c9x.me/qbe.git
packages:
- gmake
tasks:
- setup: |
# avoid __asm__ on non __GNUC__ compilers
doas patch -d /usr/include/amd64 < cproc/.builds/openbsd.diff
- build: |
PATH=$HOME/qbe/obj:$PATH
gmake -C qbe
cd cproc
./configure
make all check
# XXX: bootstrap is broken with OpenBSD 6.7 stdarg.h
triggers:
- action: email
condition: failure
to: "<~mcf/cproc@lists.sr.ht>"
|