From fe088d9761f6dbc33f8f5309746d2c6a37027dc3 Mon Sep 17 00:00:00 2001 From: akorchyn Date: Thu, 12 Sep 2024 16:48:52 +0300 Subject: [PATCH] test sandbox on some commit --- .github/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2fedcb0c..81ea1f1d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -64,8 +64,12 @@ jobs: run: rustup target add wasm32-unknown-unknown - name: Check with stable features run: cargo check --verbose + - name: Compile sandbox + run: git clone https://github.com/near/nearcore -b fe5a71c81aa048799ad7c53fe7c8e261c9ebae35 && cd nearcore && make sandbox && cd - + - name: Sandbox version + run: ./nearcore/target/debug/neard-sandbox -V - name: Run tests with unstable features - run: NEAR_RPC_TIMEOUT_SECS=100 cargo test --verbose --features unstable + run: NEAR_RPC_TIMEOUT_SECS=100 NEAR_SANDBOX_BIN_PATH=./nearcore/target/debug/neard-sandbox cargo test --verbose --features unstable release-plz: runs-on: ubuntu-latest