From 6af9c4f2f7335d102b240d17ae9d88173ad158cc Mon Sep 17 00:00:00 2001 From: "diego.marcilio" Date: Mon, 29 Jul 2024 09:13:57 +0000 Subject: [PATCH] linux-arm release: install g++ --- .github/workflows/polyglot_release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/polyglot_release.yml b/.github/workflows/polyglot_release.yml index fc6debfad..b9b29608b 100644 --- a/.github/workflows/polyglot_release.yml +++ b/.github/workflows/polyglot_release.yml @@ -19,9 +19,11 @@ jobs: pip install --upgrade maturin - name: Setup rustup target linux-arm if: ${{ matrix.target == 'linux-arm' }} + # g++ is needed for tree-sitter YAML dependency run: | sudo apt-get update sudo apt-get install gcc-aarch64-linux-gnu + sudo apt-get install g++-aarch64-linux-gnu rustup target add aarch64-unknown-linux-gnu mkdir -p .cargo touch .cargo/config.toml