aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGilles Chehade <gilles@poolp.org>2019-11-26 08:20:38 +0100
committerGilles Chehade <gilles@poolp.org>2019-11-26 08:20:38 +0100
commitf41823959a378851d7eb923e19a98c4e46b96498 (patch)
treeb4cfd995bfb679ec058a273033044f1e1d39e11b
parentMerge branch 'master' into portable (diff)
parentMerge pull request #1006 from OpenSMTPD/ci_openbsd_build (diff)
downloadOpenSMTPD-f41823959a378851d7eb923e19a98c4e46b96498.tar.xz
OpenSMTPD-f41823959a378851d7eb923e19a98c4e46b96498.zip
Merge branch 'portable' of ssh://ssh.github.com/OpenSMTPD/OpenSMTPD into portable
-rw-r--r--.builds/freebsd.yml19
-rw-r--r--.builds/openbsd.yml16
2 files changed, 35 insertions, 0 deletions
diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml
new file mode 100644
index 00000000..84becdc5
--- /dev/null
+++ b/.builds/freebsd.yml
@@ -0,0 +1,19 @@
+image: freebsd/latest
+packages:
+- autoconf
+- automake
+- bison
+- libevent
+- libtool
+- libressl
+- libasr
+sources:
+- https://github.com/OpenSMTPD/OpenSMTPD
+tasks:
+- configure: |
+ cd OpenSMTPD
+ ./bootstrap
+ ./configure --with-libasr=/usr/local
+- build: |
+ cd OpenSMTPD
+ make
diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml
new file mode 100644
index 00000000..a0557a99
--- /dev/null
+++ b/.builds/openbsd.yml
@@ -0,0 +1,16 @@
+image: openbsd/6.6
+packages:
+- autoconf-2.69p2
+- automake-1.14.1p1
+- libtool
+sources:
+- https://github.com/OpenSMTPD/OpenSMTPD
+tasks:
+- configure: |
+ cd OpenSMTPD
+ export AUTOCONF_VERSION=2.69
+ ./bootstrap
+ ./configure
+- build: |
+ cd OpenSMTPD
+ make