1
0
mirror of https://github.com/janet-lang/janet synced 2025-02-05 19:40:01 +00:00
janet/.builds/linux.yml

22 lines
409 B
YAML
Raw Normal View History

2020-11-15 19:47:11 -06:00
image: archlinux
sources:
- https://git.sr.ht/~bakpakin/janet
packages:
- meson
tasks:
2021-02-08 18:10:46 -06:00
- with-epoll: |
cd janet
2021-02-08 18:26:04 -06:00
meson setup with-epoll --buildtype=release
cd with-epoll
2021-02-08 18:10:46 -06:00
meson configure -Depoll=true
ninja
ninja test
- no-epoll: |
cd janet
2021-02-08 18:26:04 -06:00
meson setup no-epoll --buildtype=release
cd no-epoll
2020-11-15 19:47:11 -06:00
meson configure -Depoll=false
ninja
ninja test
sudo ninja install