From e1babbf435cd2da9c679bb8ea6097605cee45843 Mon Sep 17 00:00:00 2001 From: chejinge Date: Tue, 5 Nov 2024 16:51:38 +0800 Subject: [PATCH] fixci --- .github/workflows/pika.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pika.yml b/.github/workflows/pika.yml index f08b7302e..bcce402b5 100644 --- a/.github/workflows/pika.yml +++ b/.github/workflows/pika.yml @@ -204,19 +204,18 @@ jobs: ./pikatests.sh all clean - name: Start codis, pika master and pika slave - working-directory: ${{ github.workspace }} + working-directory: ${{ github.workspace }}/build run: | - cd tests/integration/ - chmod +x start_master_and_slave.sh - ./start_master_and_slave.sh - chmod +x start_codis.sh - ./start_codis.sh + chmod +x ../tests/integration/start_master_and_slave.sh + ../tests/integration/start_master_and_slave.sh + chmod +x ../tests/integration/start_codis.sh + ../tests/integration/start_codis.sh - name: Run Go E2E Tests - working-directory: ${{ github.workspace }} + working-directory: ${{ github.workspace }}/build run: | - cd tests/integration/ + cd ../../tests/integration/ chmod +x integrate_test.sh sh integrate_test.sh