diff options
author | David Robillard <d@drobilla.net> | 2018-06-06 20:35:46 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-12-02 18:49:07 -0500 |
commit | 93133610d2454108ace24948358c4f0be47049a2 (patch) | |
tree | 695cfe5c9c3815fc07282a5f19dd22b3edb13e0d /.gitlab-ci.yml | |
parent | 1d8cc6eebcb61f261f6d92318ffda32d8a4de080 (diff) | |
download | serd-93133610d2454108ace24948358c4f0be47049a2.tar.gz serd-93133610d2454108ace24948358c4f0be47049a2.tar.bz2 serd-93133610d2454108ace24948358c4f0be47049a2.zip |
[WIP] Add zix dependency
Most of the system-specific code will be replaced with calls to portable zix
functions, and the data structures will be used for in-memory node and
statement storage.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4c4cd015..19937395 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -34,7 +34,7 @@ static: stage: build image: lv2plugin/debian-x64 script: - - meson setup build -Ddefault_library=static -Ddocs=disabled -Dexess:default_library=static -Dstatic=true -Dwarning_level=3 -Dwerror=true + - meson setup build -Ddefault_library=static -Ddocs=disabled -Dexess:default_library=static -Dstatic=true -Dwarning_level=3 -Dwerror=true -Dzix:default_library=static - ninja -C build test sanitize: @@ -99,7 +99,7 @@ mingw32: - meson configure -Dbuildtype=release build - ninja -C build test variables: - WINEPATH: "Z:\\usr\\lib\\gcc\\i686-w64-mingw32\\10-win32;Z:\\builds\\drobilla\\serd\\build\\subprojects\\exess" + WINEPATH: "Z:\\usr\\lib\\gcc\\i686-w64-mingw32\\10-win32;Z:\\builds\\drobilla\\serd\\build\\subprojects\\exess;Z:\\builds\\drobilla\\serd\\build\\subprojects\\zix" mingw64: stage: build @@ -110,7 +110,7 @@ mingw64: - meson configure -Dbuildtype=release build - ninja -C build test variables: - WINEPATH: "Z:\\usr\\lib\\gcc\\x86_64-w64-mingw32\\8.3-win32;Z:\\builds\\drobilla\\serd\\build\\subprojects\\exess" + WINEPATH: "Z:\\usr\\lib\\gcc\\x86_64-w64-mingw32\\8.3-win32;Z:\\builds\\drobilla\\serd\\build\\subprojects\\exess;Z:\\builds\\drobilla\\serd\\build\\subprojects\\zix" # Non-Linux/Docker rows (not hosted) |