From 77817409b20f4f9c9fa888179a41ef36e3f5badc Mon Sep 17 00:00:00 2001 From: aya Date: Sat, 17 May 2025 23:37:49 +0300 Subject: [PATCH] Fix yml file --- .github/workflows/Repeated_tests_endurancce.yml | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/workflows/Repeated_tests_endurancce.yml b/.github/workflows/Repeated_tests_endurancce.yml index 06ea67c..0632cb0 100644 --- a/.github/workflows/Repeated_tests_endurancce.yml +++ b/.github/workflows/Repeated_tests_endurancce.yml @@ -2,7 +2,7 @@ name: Repeated Test Suite on: workflow_dispatch: - + jobs: repeated-tests: runs-on: [self-hosted, ubuntu-22.04] @@ -14,13 +14,13 @@ jobs: submodules: true fetch-depth: 0 - - name: Initialize & update submodules + - name: Initialize submodules run: git submodule update --init --recursive - name: Prepare third_party directory run: | - mkdir -p third_party - chown $USER third_party + mkdir -p third_party + chown $USER third_party - name: Set up Go uses: actions/setup-go@v4 @@ -30,12 +30,8 @@ jobs: - name: Install Go dependencies run: go mod download - - name: Build nwaku dependencies - run: | - cd third_party/nwaku - make update - make libwaku - make -C waku + - name: Build dependencies + run: make -C waku - name: Clean environment run: go clean -cache