diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-08-16 22:04:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-16 22:04:49 +0200 |
commit | 282ffc840dcb5f18f9955c87a77ebd925e116ef1 (patch) | |
tree | f8eb52d4c1967aa8abe3d0fe3a829f560409535f | |
parent | bfbc1a787266833d7bebf0b48ac62a526a864034 (diff) | |
download | rneovim-282ffc840dcb5f18f9955c87a77ebd925e116ef1.tar.gz rneovim-282ffc840dcb5f18f9955c87a77ebd925e116ef1.tar.bz2 rneovim-282ffc840dcb5f18f9955c87a77ebd925e116ef1.zip |
CI/OpenBSD: Initial sourcehut dispatch file #10792
Does only the build step for now, some tests fail currently.
-rw-r--r-- | .builds/openbsd.yml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml new file mode 100644 index 0000000000..27b165de72 --- /dev/null +++ b/.builds/openbsd.yml @@ -0,0 +1,33 @@ +# sourcehut CI: https://builds.sr.ht/~jmk/neovim + +image: openbsd/6.5 + +packages: +- autoconf-2.69p2 +- automake-1.15.1 +- cmake +- gettext-0.19.8.1p3 +- gettext-tools-0.19.8.1 +- gmake +- libtool +- ninja-1.8.2p0 +- unzip-6.0p11 + +sources: +- https://github.com/neovim/neovim + +tasks: +- build: | + export AUTOCONF_VERSION=2.69 + export AUTOMAKE_VERSION=1.15 + cd neovim + mkdir .deps + cd .deps + cmake -G Ninja ../third-party/ + cmake --build . --config Debug + cd .. + mkdir build + cd build + cmake -G Ninja .. + cmake --build . --config Debug + ./bin/nvim --version |