diff options
author | Dundar Goc <gocdundar@gmail.com> | 2022-07-26 15:05:54 +0200 |
---|---|---|
committer | Dundar Goc <gocdundar@gmail.com> | 2022-07-26 17:27:26 +0200 |
commit | d61a5a08ac651df21369b19103696664d17b2daf (patch) | |
tree | de9507edca12fba0020c0332e7a7c89436cafb78 | |
parent | 2a9c9371bc6d7e3c92eace673d1ed3740b12a270 (diff) | |
download | rneovim-d61a5a08ac651df21369b19103696664d17b2daf.tar.gz rneovim-d61a5a08ac651df21369b19103696664d17b2daf.tar.bz2 rneovim-d61a5a08ac651df21369b19103696664d17b2daf.zip |
ci(openbsd): don't specify versions for dependencies if possible
It's more convenient to not specify the version and let openbsd's
package manager figure it out. This will help us avoid manually bumping
dependency versions when a new version of openbsd is released.
Some packages have multiple versions and not specifying a version in
those cases fails the CI job, so providing a version seems to be
necessary for some key packages.
-rw-r--r-- | .builds/openbsd.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml index 60548f4f58..b5799e424b 100644 --- a/.builds/openbsd.yml +++ b/.builds/openbsd.yml @@ -6,11 +6,11 @@ packages: - autoconf-2.71 - automake-1.16.3 - cmake -- gettext-runtime-0.21p1 -- gettext-tools-0.21p1 +- gettext-runtime +- gettext-tools - gmake - libtool -- ninja-1.10.2p0 +- ninja - unzip-6.0p14 - gdb |