File tree 1 file changed +11
-0
lines changed
1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -31,10 +31,21 @@ jobs:
31
31
(github.event_name != 'pull_request' || github.event.action != 'closed')
32
32
runs-on : llvm-premerge-linux-runners
33
33
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}"
34
42
- name : Checkout LLVM
35
43
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
36
44
with :
37
45
fetch-depth : 2
46
+ # The `ln`'ed repo is frozen with the docker container; no need to
47
+ # clean.
48
+ clean : false
38
49
- name : Setup ccache
39
50
uses : hendrikmuhs/ccache-action@a1209f81afb8c005c13b4296c32e363431bffea5 # v1.2.17
40
51
with :
You can’t perform that action at this time.
0 commit comments