diff --git a/.builds/alpine.yml b/.builds/alpine.yml index a4d26c0..d149074 100644 --- a/.builds/alpine.yml +++ b/.builds/alpine.yml @@ -8,7 +8,7 @@ sources: tasks: - setup: | cd libopenrazer - meson -Ddemo=true builddir + meson setup -Ddemo=true builddir - build: | cd libopenrazer - ninja -C builddir + meson compile -C builddir diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml index 94e9e5d..6b67041 100644 --- a/.builds/freebsd.yml +++ b/.builds/freebsd.yml @@ -1,26 +1,17 @@ image: freebsd/latest -# Install the dependencies manually for now. -# > pkg: cached package qt5-buildtools-5.13.2_1: size mismatch, cannot continue -# > Consider running 'pkg update -f' -# packages: -# - meson -# - pkgconf -# - qt5-buildtools -# - qt5-dbus -# - qt5-widgets -# - qt5-xml +packages: + - meson + - pkgconf + - qt5-buildtools + - qt5-dbus + - qt5-widgets + - qt5-xml sources: - https://github.com/z3ntu/libopenrazer tasks: - - install-deps: | - sudo pkg update -f - yes | sudo pkg install meson pkgconf qt5-buildtools qt5-dbus qt5-widgets qt5-xml - setup: | cd libopenrazer - meson -Ddemo=true builddir + meson setup -Ddemo=true builddir - build: | cd libopenrazer - ninja -C builddir - - test: | - cd libopenrazer - ninja -C builddir test + meson compile -C builddir