From 168457180802e50a74756a81ea280e80095130b9 Mon Sep 17 00:00:00 2001 From: Sergi Delgado Segura Date: Thu, 5 Sep 2024 16:48:44 -0400 Subject: [PATCH] Makes sure the time create is up to date Compiling time with rustc over 1.80.0 (inclusive) results in a crash for old versions of the time crate, which CLN uses. Make sure we are up to date with the current revision --- .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 dd150e85..15b74ff3 100644 --- a/.github/workflows/cln-plugin.yaml +++ b/.github/workflows/cln-plugin.yaml @@ -38,6 +38,7 @@ jobs: sudo apt-get update && sudo apt-get install -y gettext git clone https://github.com/ElementsProject/lightning.git && cd lightning && git checkout v${{ env.cln_version }} pip install --user poetry && poetry install + cargo update -p time ./configure && poetry run make cln-plugin: