From 6492705256c25b6540db345f1feccf54da425db3 Mon Sep 17 00:00:00 2001 From: aya Date: Sat, 17 May 2025 22:34:08 +0300 Subject: [PATCH] try to fix sudo error when running on self hosted runner --- .github/workflows/Repeated_tests_endurancce.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/Repeated_tests_endurancce.yml b/.github/workflows/Repeated_tests_endurancce.yml index 42e1aa2..f197202 100644 --- a/.github/workflows/Repeated_tests_endurancce.yml +++ b/.github/workflows/Repeated_tests_endurancce.yml @@ -19,8 +19,8 @@ jobs: - name: Prepare third_party directory run: | - sudo mkdir -p third_party - sudo chown $USER third_party + mkdir -p third_party + chown $USER third_party - name: Set up Go uses: actions/setup-go@v4 @@ -31,7 +31,11 @@ jobs: run: go mod download - name: Build nwaku dependencies - run: make -C waku + run: + git pull + make update + make libwaku + make -C waku - name: Clean environment run: go clean -cache