File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -31,10 +31,21 @@ jobs:
3131 (github.event_name != 'pull_request' || github.event.action != 'closed')
3232 runs-on : llvm-premerge-linux-runners
3333 steps :
34+ - name : Seed LLVM repo
35+ run : |
36+ # Github creates a directory at GITHUB_WORKSPACE by defualt; replace it
37+ # with a symlink to our pre-checked-out LLVM repo (this is necessary
38+ # since actions/checkout _really wants_ a path inside of
39+ # `${GITHUB_WORKSPACE}`
40+ rmdir "${GITHUB_WORKSPACE}"
41+ ln -s /home/gha/llvm-project "${GITHUB_WORKSPACE}"
3442 - name : Checkout LLVM
3543 uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3644 with :
3745 fetch-depth : 2
46+ # The `ln`'ed repo is frozen with the docker container; no need to
47+ # clean.
48+ clean : false
3849 - name : Setup ccache
3950 uses : hendrikmuhs/ccache-action@a1209f81afb8c005c13b4296c32e363431bffea5 # v1.2.17
4051 with :
You can’t perform that action at this time.
0 commit comments