From dbdbf11c8ebe7fbffa1230bc9735ab779164e52e Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Fri, 17 Oct 2025 16:44:06 +0100 Subject: [PATCH] [Test] Set permissions on data directory for container writes Add chmod 777 after mkdir to allow container to write shuffled_files.txt and other temporary files --- .github/workflows/integration-test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index e25a1abd31..2be7de962e 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -134,6 +134,7 @@ jobs: # Create data directory for corpus mkdir -p data + chmod 777 data curl -L "$CORPUS_URL" -o data/corpus.zip -- 2.47.3