From a9ce028b41d5f175f0369bf3eaf49ab67e403fce Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Tue, 17 Dec 2024 23:27:27 +0000 Subject: [PATCH] Remove ~/.jsvu at start of each job Similar to 55e84619a08a7161bb6bf650a3016b39799af8af. --- .github/workflows/run.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run.yml b/.github/workflows/run.yml index a19d9cf..2aeae82 100644 --- a/.github/workflows/run.yml +++ b/.github/workflows/run.yml @@ -77,8 +77,12 @@ jobs: name: chunks path: chunks - - name: Remove ~/.esvu - run: rm -rf ~/.esvu + # For some nightlies the version is stable across many runs, e.g. for SpiderMonkey (123.0a1) + # We want to force those to be reinstalled and the easiest way is to just delete the entire install. + - name: Remove esvu/jsvu directories + run: | + rm -rf ~/.esvu + rm -rf ~/.jsvu - name: Run test262 with ${{ matrix.engine }} run: ./scripts/engines/${{ matrix.engine }}.sh