From 81ae561ac4dcef41a3d8248dcea5af896ba20940 Mon Sep 17 00:00:00 2001 From: Fulvio Venturelli Date: Tue, 10 Sep 2024 16:48:50 +0200 Subject: [PATCH 1/2] CI: changed target to make rusk on copy binary CI --- .github/workflows/binary_copy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/binary_copy.yml b/.github/workflows/binary_copy.yml index 69ed40db60..ed868406b6 100644 --- a/.github/workflows/binary_copy.yml +++ b/.github/workflows/binary_copy.yml @@ -30,7 +30,7 @@ jobs: steps: - uses: actions/checkout@v4 - uses: dsherret/rust-toolchain-file@v1 - - run: make + - run: make rusk copy_to_host: needs: build runs-on: core From f19a9d3ad7a131b8d25fcbebbca79719625937f0 Mon Sep 17 00:00:00 2001 From: Fulvio Venturelli Date: Tue, 10 Sep 2024 17:21:09 +0200 Subject: [PATCH 2/2] CI: Fix copy CI to perform a full build by installing node dependencies --- .github/workflows/binary_copy.yml | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/.github/workflows/binary_copy.yml b/.github/workflows/binary_copy.yml index ed868406b6..660ebeb99d 100644 --- a/.github/workflows/binary_copy.yml +++ b/.github/workflows/binary_copy.yml @@ -28,9 +28,20 @@ jobs: name: Make rusk runs-on: core steps: - - uses: actions/checkout@v4 - - uses: dsherret/rust-toolchain-file@v1 - - run: make rusk + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Rust toolchain + uses: dsherret/rust-toolchain-file@v1 + + - name: Setting up Node 20.x + uses: actions/setup-node@v4 + with: + node-version: 20.x + scope: "@dusk-network" + + - name: Build node + run: make all copy_to_host: needs: build runs-on: core