mirror of
https://github.com/janet-lang/janet
synced 2024-11-24 17:27:18 +00:00
Add meson builds to sourcehut CI.
This commit is contained in:
parent
a65386e925
commit
00451777fe
12
.builds/meson.yml
Normal file
12
.builds/meson.yml
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
image: openbsd/latest
|
||||||
|
sources:
|
||||||
|
- https://git.sr.ht/~bakpakin/janet
|
||||||
|
packages:
|
||||||
|
- meson
|
||||||
|
tasks:
|
||||||
|
- build: |
|
||||||
|
cd janet
|
||||||
|
meson setup build --buildtype=release
|
||||||
|
cd build
|
||||||
|
ninja
|
||||||
|
ninja test
|
22
.builds/meson_min.yml
Normal file
22
.builds/meson_min.yml
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
image: openbsd/latest
|
||||||
|
sources:
|
||||||
|
- https://git.sr.ht/~bakpakin/janet
|
||||||
|
packages:
|
||||||
|
- meson
|
||||||
|
tasks:
|
||||||
|
- build: |
|
||||||
|
cd janet
|
||||||
|
meson setup build --buildtype=release
|
||||||
|
cd build
|
||||||
|
meson configure -Dsingle_threaded=true
|
||||||
|
meson configure -Dnanbox=false
|
||||||
|
meson configure -Ddynamic_modules=false
|
||||||
|
meson configure -Ddocstrings=false
|
||||||
|
meson configure -Dnet=false
|
||||||
|
meson configure -Dsourcemaps=false
|
||||||
|
meson configure -Dpeg=false
|
||||||
|
meson configure -Dassembler=false
|
||||||
|
meson configure -Dint_types=false
|
||||||
|
meson configure -Dtyped_arrays=false
|
||||||
|
meson configure -Dreduced_os=true
|
||||||
|
ninja # will not pass tests but should build
|
4
jpm
4
jpm
@ -835,8 +835,8 @@ int main(int argc, const char **argv) {
|
|||||||
(defn declare-source
|
(defn declare-source
|
||||||
"Create a Janet modules. This does not actually build the module(s),
|
"Create a Janet modules. This does not actually build the module(s),
|
||||||
but registers it for packaging and installation."
|
but registers it for packaging and installation."
|
||||||
[&keys {:source sources}]
|
[&keys {:source sources :prefix prefix}]
|
||||||
(def path (dyn :modpath JANET_MODPATH))
|
(def path (string (dyn :modpath JANET_MODPATH) (or prefix "")))
|
||||||
(if (bytes? sources)
|
(if (bytes? sources)
|
||||||
(install-rule sources path)
|
(install-rule sources path)
|
||||||
(each s sources
|
(each s sources
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
project('janet', 'c',
|
project('janet', 'c',
|
||||||
default_options : ['c_std=c99', 'b_lundef=false', 'default_library=both'],
|
default_options : ['c_std=c99', 'b_lundef=false', 'default_library=both'],
|
||||||
version : '1.9.1-dev')
|
version : '1.9.1')
|
||||||
|
|
||||||
# Global settings
|
# Global settings
|
||||||
janet_path = join_paths(get_option('prefix'), get_option('libdir'), 'janet')
|
janet_path = join_paths(get_option('prefix'), get_option('libdir'), 'janet')
|
||||||
|
@ -2131,11 +2131,12 @@
|
|||||||
(defn- find-prefix
|
(defn- find-prefix
|
||||||
[pre]
|
[pre]
|
||||||
(or (find-index |(and (string? ($ 0)) (string/has-prefix? pre ($ 0))) module/paths) 0))
|
(or (find-index |(and (string? ($ 0)) (string/has-prefix? pre ($ 0))) module/paths) 0))
|
||||||
(array/insert module/paths 0 [(string ":cur:/:all:" ext) loader check-.])
|
|
||||||
(def all-index (find-prefix ":all:"))
|
(def all-index (find-prefix ":all:"))
|
||||||
(array/insert module/paths all-index [(string ":all:" ext) loader not-check-.])
|
(array/insert module/paths all-index [(string ":all:" ext) loader not-check-.])
|
||||||
(def sys-index (find-prefix ":sys:"))
|
(def sys-index (find-prefix ":sys:"))
|
||||||
(array/insert module/paths sys-index [(string ":sys:/:all:" ext) loader not-check-.])
|
(array/insert module/paths sys-index [(string ":sys:/:all:" ext) loader not-check-.])
|
||||||
|
(def curall-index (find-prefix ":cur:/:all:"))
|
||||||
|
(array/insert module/paths curall-index [(string ":cur:/:all:" ext) loader check-.])
|
||||||
module/paths)
|
module/paths)
|
||||||
|
|
||||||
(module/add-paths ":native:" :native)
|
(module/add-paths ":native:" :native)
|
||||||
|
@ -687,7 +687,7 @@ static const JanetReg corelib_cfuns[] = {
|
|||||||
"\t:dir:\tthe directory containing the current file\n"
|
"\t:dir:\tthe directory containing the current file\n"
|
||||||
"\t:name:\tthe name component of path, with extension if given\n"
|
"\t:name:\tthe name component of path, with extension if given\n"
|
||||||
"\t:native:\tthe extension used to load natives, .so or .dll\n"
|
"\t:native:\tthe extension used to load natives, .so or .dll\n"
|
||||||
"\t:sys:\tthe system path, or (syn :syspath)")
|
"\t:sys:\tthe system path, or (dyn :syspath)")
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"int?", janet_core_check_int,
|
"int?", janet_core_check_int,
|
||||||
|
Loading…
Reference in New Issue
Block a user