Skip to content

Commit

Permalink
Attempt to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
JCWasmx86 committed Feb 1, 2025
1 parent 2f4e122 commit 977738c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN meson setup _static --default-library=static --prefer-static \
-Dcpp_link_args='-static-libgcc -static-libstdc++' -Dstatic_build=true \
--buildtype=release -Db_lto=true --force-fallback-for=libpkgconf
RUN ninja -C _static -j2
RUN ninja -C _static test
RUN meson test -C _static "mesonlsp:"
RUN _static/tests/libcxathrow/cxathrowtest
RUN mkdir /app/exportDir
RUN cp _static/src/mesonlsp /app/exportDir
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.debiansid
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ COPY subprojects /app/subprojects

RUN meson setup _build --buildtype=release -Db_lto=true
RUN ninja -C _build
RUN ninja -C _build test
RUN meson test -C _build "mesonlsp:"
RUN _build/tests/libcxathrow/cxathrowtest
RUN mkdir /app/exportDir
RUN cp _build/src/mesonlsp /app/exportDir
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.debiantrixie
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ COPY subprojects /app/subprojects

RUN meson setup _build --buildtype=release -Db_lto=true
RUN ninja -C _build
RUN ninja -C _build test
RUN meson test -C _build "mesonlsp:"
RUN _build/tests/libcxathrow/cxathrowtest
RUN mkdir /app/exportDir
RUN cp _build/src/mesonlsp /app/exportDir
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci_create_zip.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ meson setup _build --buildtype debug
# shellcheck disable=SC2086
ninja -C _build $2 || exit 1
# shellcheck disable=SC2086
ninja -C _build test $2 || exit 1
meson test -C _build "mesonlsp:" $2 || exit 1
./_build/tests/libcxathrow/cxathrowtest
cp _build/src/mesonlsp mesonlsp.debug
zip -9 "$1".zip mesonlsp.debug mesonlsp
Expand Down

0 comments on commit 977738c

Please sign in to comment.