add ci files

This commit is contained in:
Raphael Robatsch 2021-11-16 18:12:57 +01:00
parent 08b329a801
commit 7da9aad117
3 changed files with 40 additions and 1 deletions

19
.builds/archlinux.yml Normal file
View File

@ -0,0 +1,19 @@
image: archlinux
packages:
- base-devel
- meson
- wayland
- wayland-protocols
- cairo
- pango
sources:
- https://git.sr.ht/~raphi/somebar
tasks:
- setup: |
cd somebar
meson build --fatal-meson-warnings
cp src/config.def.hpp src/config.hpp
- build: |
cd somebar/build
ninja
sudo ninja install

20
.builds/freebsd.DISABLED Normal file
View File

@ -0,0 +1,20 @@
image: freebsd/latest
packages:
- devel/evdev-proto
- devel/meson
- devel/pkgconf
- graphics/cairo
- graphics/wayland
- graphics/wayland-protocols
- x11-toolkits/pango
sources:
- https://git.sr.ht/~raphi/somebar
tasks:
- setup: |
cd somebar
meson build --fatal-meson-warnings
cp src/config.def.hpp src/config.hpp
- build: |
cd somebar/build
ninja
sudo ninja install

View File

@ -26,7 +26,7 @@ sudo apt install build-essential meson ninja-build \
# or # or
sudo pacman -S base-devel meson \ sudo pacman -S base-devel meson \
wayland-protocols cairo pango wayland wayland-protocols cairo pango
``` ```
## Configuration ## Configuration