From e2107ba6eb486b305e02ce7ed259273b1823bf70 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Tue, 24 Oct 2023 21:48:12 +0200 Subject: [PATCH] ci: fixups Signed-off-by: Ettore Di Giacinto --- .github/workflows/test-gpu.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-gpu.yml b/.github/workflows/test-gpu.yml index 3d126bbf7869..34d3cafb79b8 100644 --- a/.github/workflows/test-gpu.yml +++ b/.github/workflows/test-gpu.yml @@ -40,6 +40,8 @@ jobs: if [ ! -e /run/systemd/system ]; then sudo mkdir /run/systemd/system fi + sudo mkdir -p /host/tests/${{ github.head_ref || github.ref }} + sudo chmod -R 777 /host/tests/${{ github.head_ref || github.ref }} make \ TEST_DIR="/host/tests/${{ github.head_ref || github.ref }}" \ BUILD_TYPE=cublas \ @@ -57,4 +59,5 @@ jobs: make \ TEST_DIR="/host/tests/${{ github.head_ref || github.ref }}" \ teardown-e2e || true - docker system prune -f -a --volumes || true \ No newline at end of file + sudo rm -rf /host/tests/${{ github.head_ref || github.ref }} + docker system prune -f -a --volumes || true