From 221896df99db9de7016bbfb55d7ca2f6368f2e6a Mon Sep 17 00:00:00 2001 From: Frikky Date: Fri, 28 Feb 2025 01:22:21 +0100 Subject: [PATCH 1/2] Update quick-testing.yml --- .github/workflows/quick-testing.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/quick-testing.yml b/.github/workflows/quick-testing.yml index 17ac28ac..d66039da 100644 --- a/.github/workflows/quick-testing.yml +++ b/.github/workflows/quick-testing.yml @@ -19,7 +19,11 @@ jobs: uses: actions/checkout@v2 - name: Set up opensearch directory - run: mkdir shuffle-database && chmod -R 777 shuffle-database + run: mkdir shuffle-database + continue-on-error: true + + - name: Elevate rights for it + run: chmod -R 777 shuffle-database - name: Build the stack run: docker-compose up -d From 66d17fc2dab2f2d19d5030090d63157a3ddf5e11 Mon Sep 17 00:00:00 2001 From: Frikky Date: Fri, 28 Feb 2025 01:37:03 +0100 Subject: [PATCH 2/2] Update quick-testing.yml --- .github/workflows/quick-testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/quick-testing.yml b/.github/workflows/quick-testing.yml index d66039da..cfceb6dd 100644 --- a/.github/workflows/quick-testing.yml +++ b/.github/workflows/quick-testing.yml @@ -26,7 +26,7 @@ jobs: run: chmod -R 777 shuffle-database - name: Build the stack - run: docker-compose up -d + run: docker compose up -d - name: Wait for 30 seconds run: sleep 30