Skip to content

Commit

Permalink
Remove ~/.jsvu at start of each job
Browse files Browse the repository at this point in the history
Similar to 55e8461.
  • Loading branch information
linusg committed Dec 17, 2024
1 parent 753db77 commit a9ce028
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a9ce028

Please sign in to comment.