From 3e5582da9ffb523533bb017798e001a7ed052abe Mon Sep 17 00:00:00 2001 From: Sergi Delgado Segura Date: Thu, 28 Mar 2024 10:41:30 +0100 Subject: [PATCH] gh-actions: make sure protoc is installed when installing teos This is a temp fix, the installation usually happens when creating the cache, so we can remove this after creating a new one --- .github/workflows/cln-plugin.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/cln-plugin.yaml b/.github/workflows/cln-plugin.yaml index 3edbb589..71528753 100644 --- a/.github/workflows/cln-plugin.yaml +++ b/.github/workflows/cln-plugin.yaml @@ -60,6 +60,7 @@ jobs: cd lightning && sudo make install - name: Install teos and the plugin run: | + sudo apt-get update && sudo apt-get install -y protobuf-compiler cargo install --locked --path teos cargo install --locked --path watchtower-plugin - name: Add test dependencies