Update esplugin to v6.1.3

This requires an update to cbindgen to handle some newer syntax (C
string literals).
This commit is contained in:
Oliver Hamlet
2025-04-30 08:39:03 +01:00
parent 7c1191cd90
commit 2af6f26580
2 changed files with 13 additions and 6 deletions
+11 -4
View File
@@ -67,13 +67,22 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y --no-upgrade \
cbindgen \
doxygen \
language-pack-el \
language-pack-tr \
libtbb-dev \
libicu-dev
# The version in apt is too old.
- name: Install cbindgen
run: |
wget https://github.com/mozilla/cbindgen/releases/download/0.28.0/cbindgen
BIN_PATH="$HOME/.local/bin/"
mkdir -p "$BIN_PATH"
mv cbindgen "$BIN_PATH"
chmod +x "$BIN_PATH/cbindgen"
echo "$BIN_PATH" >> "$GITHUB_PATH"
- name: Run CMake
run: |
cmake \
@@ -91,9 +100,7 @@ jobs:
- name: Install packages for building docs
shell: bash
run: |
pip3 install --user -r docs/requirements.txt
echo "$HOME/.local/bin" >> $GITHUB_PATH
run: pip3 install --user -r docs/requirements.txt
- name: Build docs
run: sphinx-build -b html docs build/docs/html