From 621a64dee431afae8313a93951fd00269515fc35 Mon Sep 17 00:00:00 2001 From: gabriel-aranha-cw <166405807+gabriel-aranha-cw@users.noreply.github.com> Date: Thu, 6 Jun 2024 15:50:34 -0300 Subject: [PATCH] fix e2e relayer name and locks (#1015) * fix workflow naming * chore(ci): e2e relayer setup * chore: comment --------- Co-authored-by: Maycon Amaro --- .github/workflows/e2e-relayer.yml | 22 ++++++---------------- justfile | 2 +- 2 files changed, 7 insertions(+), 17 deletions(-) diff --git a/.github/workflows/e2e-relayer.yml b/.github/workflows/e2e-relayer.yml index 2f7662bfc..212a30ac4 100644 --- a/.github/workflows/e2e-relayer.yml +++ b/.github/workflows/e2e-relayer.yml @@ -1,4 +1,4 @@ -name: Contracts E2E Rocks tests +name: E2E Relayer on: pull_request: @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Set up Rust run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.75 @@ -57,22 +57,12 @@ jobs: run: sudo apt-get install -y protobuf-compiler - name: Set up Just - uses: extractions/setup-just@v1 - - - name: Set up ASDF Version Manager - uses: asdf-vm/actions/setup@v3 + uses: extractions/setup-just@v2 - name: Install Node.js - run: | - asdf plugin add nodejs https://github.com/asdf-vm/asdf-nodejs.git - asdf install nodejs 20.10.0 - asdf global nodejs 20.10.0 - - - name: Install Solidity - run: | - asdf plugin add solidity https://github.com/diegodorado/asdf-solidity.git - asdf install solidity 0.8.16 - asdf global solidity 0.8.16 + uses: actions/setup-node@v4 + with: + node-version-file: .tool-versions - name: Set up dependencies if: ${{ steps.cache-cargo.outputs.cache-hit != 'true' }} diff --git a/justfile b/justfile index 598e32d41..1add2500e 100644 --- a/justfile +++ b/justfile @@ -371,7 +371,7 @@ e2e-relayer-external-up: # Build Stratus and Relayer binaries echo "Building Stratus binary" cargo build --release --bin stratus --features dev & - echo "Building Stratus binary" + echo "Building Relayer binary" cargo build --release --bin relayer --features dev & mkdir e2e_logs