mirror of
https://github.com/janet-lang/janet
synced 2024-11-03 23:36:16 +00:00
230b734663
JPM and related functionality has been moved to it's own repository and will be versioned separately from Janet. The distribution process could later be modified to bundle a version of jpm with Janet but this is perhaps not needed.
22 lines
409 B
YAML
22 lines
409 B
YAML
image: archlinux
|
|
sources:
|
|
- https://git.sr.ht/~bakpakin/janet
|
|
packages:
|
|
- meson
|
|
tasks:
|
|
- with-epoll: |
|
|
cd janet
|
|
meson setup with-epoll --buildtype=release
|
|
cd with-epoll
|
|
meson configure -Depoll=true
|
|
ninja
|
|
ninja test
|
|
- no-epoll: |
|
|
cd janet
|
|
meson setup no-epoll --buildtype=release
|
|
cd no-epoll
|
|
meson configure -Depoll=false
|
|
ninja
|
|
ninja test
|
|
sudo ninja install
|