aboutsummaryrefslogtreecommitdiff
path: root/.builds/openbsd.yml
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-05-14 11:10:45 -0700
committerMichael Forney <mforney@mforney.org>2019-05-14 11:10:45 -0700
commit3bd42ae2c10e27e6537c3e67defb9d5a41e71fd3 (patch)
tree92eb935cc878a113b9958b54ddd3c0c9bcde75b3 /.builds/openbsd.yml
parent3aedaa781bd58d1cc79ea309be27bfd207e39482 (diff)
Add initial OpenBSD continuous build
Diffstat (limited to '.builds/openbsd.yml')
-rw-r--r--.builds/openbsd.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml
new file mode 100644
index 0000000..508c8ca
--- /dev/null
+++ b/.builds/openbsd.yml
@@ -0,0 +1,17 @@
+image: openbsd/latest
+sources:
+- https://git.sr.ht/~mcf/cc
+- git://c9x.me/qbe.git
+packages:
+- gmake
+environment:
+ PATH: $HOME/qbe/obj:$PATH
+tasks:
+- build: |
+ gmake -C qbe
+ cd cc
+ ./configure
+ make all check
+ # OpenBSD support is not quite there (#53), so just build hello world
+ ./cc -o hello test/hello.c
+ ./hello