From 51a9822a22b5cf7584733dcbeb3013747ac27d5b Mon Sep 17 00:00:00 2001 From: jaypan Date: Wed, 4 Sep 2024 15:24:16 +0200 Subject: [PATCH] Build directly --- .github/workflows/brand-new-chain-test.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/brand-new-chain-test.yml b/.github/workflows/brand-new-chain-test.yml index 6434cbd0..bf1485d8 100644 --- a/.github/workflows/brand-new-chain-test.yml +++ b/.github/workflows/brand-new-chain-test.yml @@ -125,6 +125,22 @@ jobs: run: | npm install + - name: "Free Disk Space (insightsengineering/disk-space-reclaimer)" + uses: insightsengineering/disk-space-reclaimer@v1.1.0 + + - name: "Linux Tools" + run: sudo apt install -y cmake pkg-config libssl-dev build-essential clang libclang-dev curl protobuf-compiler + + - name: "Rust" + run: | + TLCHN=nightly-2024-01-21 + curl -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain $TLCHN + rustup target add wasm32-unknown-unknown --toolchain $TLCHN + cargo install cargo-expand --locked --version 1.0.71 + + - name: Checkout Sources (actions/checkout) + uses: actions/checkout@v3 + - name: Run simple CI working-directory: ../simple-ci-poc run: |