Skip to content
This repository was archived by the owner on Mar 20, 2025. It is now read-only.

Commit 977738c

Browse files
committed
Attempt to fix CI
1 parent 2f4e122 commit 977738c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ RUN meson setup _static --default-library=static --prefer-static \
2828
-Dcpp_link_args='-static-libgcc -static-libstdc++' -Dstatic_build=true \
2929
--buildtype=release -Db_lto=true --force-fallback-for=libpkgconf
3030
RUN ninja -C _static -j2
31-
RUN ninja -C _static test
31+
RUN meson test -C _static "mesonlsp:"
3232
RUN _static/tests/libcxathrow/cxathrowtest
3333
RUN mkdir /app/exportDir
3434
RUN cp _static/src/mesonlsp /app/exportDir

docker/Dockerfile.debiansid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ COPY subprojects /app/subprojects
1111

1212
RUN meson setup _build --buildtype=release -Db_lto=true
1313
RUN ninja -C _build
14-
RUN ninja -C _build test
14+
RUN meson test -C _build "mesonlsp:"
1515
RUN _build/tests/libcxathrow/cxathrowtest
1616
RUN mkdir /app/exportDir
1717
RUN cp _build/src/mesonlsp /app/exportDir

docker/Dockerfile.debiantrixie

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ COPY subprojects /app/subprojects
1111

1212
RUN meson setup _build --buildtype=release -Db_lto=true
1313
RUN ninja -C _build
14-
RUN ninja -C _build test
14+
RUN meson test -C _build "mesonlsp:"
1515
RUN _build/tests/libcxathrow/cxathrowtest
1616
RUN mkdir /app/exportDir
1717
RUN cp _build/src/mesonlsp /app/exportDir

scripts/ci_create_zip.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ meson setup _build --buildtype debug
99
# shellcheck disable=SC2086
1010
ninja -C _build $2 || exit 1
1111
# shellcheck disable=SC2086
12-
ninja -C _build test $2 || exit 1
12+
meson test -C _build "mesonlsp:" $2 || exit 1
1313
./_build/tests/libcxathrow/cxathrowtest
1414
cp _build/src/mesonlsp mesonlsp.debug
1515
zip -9 "$1".zip mesonlsp.debug mesonlsp

0 commit comments

Comments
 (0)