summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIdan Horowitz <idan.horowitz@gmail.com>2021-07-03 21:36:49 +0300
committerLinus Groh <mail@linusgroh.de>2021-07-03 19:45:04 +0100
commitee991fa4e0bebc50792baf805fa406d3f8480ef7 (patch)
tree96d16de45a542562dd87edf0dde567820e4d8064
parente9ab9ca5a0de30b042adbc1a288cda9e1910b240 (diff)
downloadserenity-ee991fa4e0bebc50792baf805fa406d3f8480ef7.zip
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.
-rw-r--r--.github/workflows/libjs-test262.yml5
1 files changed, 5 insertions, 0 deletions
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