aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2022-02-27 08:14:23 -0500
committerJames McCoy <jamessan@jamessan.com>2022-02-27 09:07:11 -0500
commit8d8288461a58ff68e24b4273c3bbb58d2b0a316f (patch)
treecf8de27c21382c3bfaf9108897e60ccd743e4fb4
parent55ab76a1c0f63ebb735495a91066cbe01b6d0bb3 (diff)
downloadrneovim-8d8288461a58ff68e24b4273c3bbb58d2b0a316f.tar.gz
rneovim-8d8288461a58ff68e24b4273c3bbb58d2b0a316f.tar.bz2
rneovim-8d8288461a58ff68e24b4273c3bbb58d2b0a316f.zip
ci(lint): use bundled luv until system packages are updated
-rwxr-xr-x.github/workflows/env.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/env.sh b/.github/workflows/env.sh
index d424924c27..bd170f92fb 100755
--- a/.github/workflows/env.sh
+++ b/.github/workflows/env.sh
@@ -46,7 +46,9 @@ CLANG_SANITIZER=TSAN
EOF
;;
lint)
- BUILD_FLAGS="$BUILD_FLAGS -DLIBLUV_LIBRARY:FILEPATH=/usr/lib/$(dpkg-architecture -qDEB_HOST_MULTIARCH)/lua/5.1/luv.so -DLIBLUV_INCLUDE_DIR:PATH=/usr/include/lua5.1"
+# Re-enable once system deps are available
+# BUILD_FLAGS="$BUILD_FLAGS -DLIBLUV_LIBRARY:FILEPATH=/usr/lib/$(dpkg-architecture -qDEB_HOST_MULTIARCH)/lua/5.1/luv.so -DLIBLUV_INCLUDE_DIR:PATH=/usr/include/lua5.1"
+ DEPS_CMAKE_FLAGS="$DEPS_CMAKE_FLAGS -DUSE_BUNDLED_LUV=ON"
cat <<EOF >> "$GITHUB_ENV"
USE_BUNDLED=OFF
CI_TARGET=lint