From aefa59a80908fbab249aabb4e8a71e04e0607283 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Mon, 13 May 2024 03:46:00 -0400 Subject: [PATCH] Add rustup update to CI setup --- .github/workflows/ci.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5c57198..b6a902c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -10,7 +10,7 @@ jobs: - uses: actions/checkout@v3 - name: Build dependencies - run: sudo apt install -y ca-certificates libssl-dev + run: rustup update stable && sudo apt update && sudo apt install -y ca-certificates libssl-dev - name: Compile run: cargo rustc -- -A warnings @@ -27,6 +27,7 @@ jobs: - name: Install coin dependencies run: | + rustup update stable sudo apt-get update # Electrum dependencies sudo apt-get install libsecp256k1-0 python3-setuptools python3-cryptography