From ee991fa4e0bebc50792baf805fa406d3f8480ef7 Mon Sep 17 00:00:00 2001 From: Idan Horowitz Date: Sat, 3 Jul 2021 21:36:49 +0300 Subject: [PATCH] CI: Manually cleanup previous self-hosted test262 run workspace folder Unlike the github hosted runners, github's software for self-hosted runners does not do this automatically. --- .github/workflows/libjs-test262.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/libjs-test262.yml b/.github/workflows/libjs-test262.yml index b82e662c1f..47c072c512 100644 --- a/.github/workflows/libjs-test262.yml +++ b/.github/workflows/libjs-test262.yml @@ -13,6 +13,11 @@ jobs: concurrency: libjs-test262 steps: + - name: Cleanup + run: | + echo "Cleaning up previous run" + rm -rf "${{ github.workspace }}/*" + - name: Checkout SerenityOS/serenity uses: actions/checkout@v2