From 3a2595bf642354c31bdad65c5d3ffe4f27b9f402 Mon Sep 17 00:00:00 2001 From: Konstantin Astakhov Date: Sun, 29 Jan 2023 16:55:22 +0000 Subject: [PATCH] fix CI make-bench --- --- a/.github/workflows/codestyle.yml +++ b/.github/workflows/codestyle.yml @@ -51,7 +51,7 @@ steps: - uses: actions/checkout@v3 - name: Install substrate dependencies - run: sudo apt-get install libssl-dev pkg-config libclang-dev clang protobuf-compiler + run: sudo apt install -y libssl-dev pkg-config libclang-dev clang protobuf-compiler - name: Install latest nightly uses: actions-rs/toolchain@v1 with: --- a/.github/workflows/make-bench.yml +++ b/.github/workflows/make-bench.yml @@ -25,7 +25,7 @@ uses: xom9ikk/dotenv@v2 - name: Install substrate dependencies - run: sudo apt-get install libssl-dev pkg-config libclang-dev clang protobuf-compiler + run: sudo apt install -y curl cmake make libssl-dev pkg-config libclang-dev clang protobuf-compiler - name: Install actual toolchain uses: actions-rs/toolchain@v1 -- gitstuff