This repository was archived by the owner on Mar 20, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ RUN meson setup _static --default-library=static --prefer-static \
28
28
-Dcpp_link_args='-static-libgcc -static-libstdc++' -Dstatic_build=true \
29
29
--buildtype=release -Db_lto=true --force-fallback-for=libpkgconf
30
30
RUN ninja -C _static -j2
31
- RUN ninja -C _static test
31
+ RUN meson test -C _static "mesonlsp:"
32
32
RUN _static/tests/libcxathrow/cxathrowtest
33
33
RUN mkdir /app/exportDir
34
34
RUN cp _static/src/mesonlsp /app/exportDir
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ COPY subprojects /app/subprojects
11
11
12
12
RUN meson setup _build --buildtype=release -Db_lto=true
13
13
RUN ninja -C _build
14
- RUN ninja -C _build test
14
+ RUN meson test -C _build "mesonlsp:"
15
15
RUN _build/tests/libcxathrow/cxathrowtest
16
16
RUN mkdir /app/exportDir
17
17
RUN cp _build/src/mesonlsp /app/exportDir
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ COPY subprojects /app/subprojects
11
11
12
12
RUN meson setup _build --buildtype=release -Db_lto=true
13
13
RUN ninja -C _build
14
- RUN ninja -C _build test
14
+ RUN meson test -C _build "mesonlsp:"
15
15
RUN _build/tests/libcxathrow/cxathrowtest
16
16
RUN mkdir /app/exportDir
17
17
RUN cp _build/src/mesonlsp /app/exportDir
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ meson setup _build --buildtype debug
9
9
# shellcheck disable=SC2086
10
10
ninja -C _build $2 || exit 1
11
11
# shellcheck disable=SC2086
12
- ninja -C _build test $2 || exit 1
12
+ meson test -C _build " mesonlsp: " $2 || exit 1
13
13
./_build/tests/libcxathrow/cxathrowtest
14
14
cp _build/src/mesonlsp mesonlsp.debug
15
15
zip -9 " $1 " .zip mesonlsp.debug mesonlsp
You can’t perform that action at this time.
0 commit comments