-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
11 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |