File tree 1 file changed +6
-0
lines changed 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 35
35
github.repository_owner == 'llvm' &&
36
36
(github.event_name != 'pull_request' || github.event.action != 'closed')
37
37
runs-on : llvm-premerge-linux-runners
38
+ container :
39
+ image : ghcr.io/gburgessiv/llvm-ci-with-checkout:latest
38
40
steps :
39
41
- name : Checkout LLVM
40
42
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
52
54
# are ready for people to start recieving notifications.
53
55
continue-on-error : true
54
56
run : |
57
+ ls /home/gha
58
+ exit 1
55
59
git config --global --add safe.directory '*'
56
60
57
61
modified_files=$(git diff --name-only HEAD~1...HEAD)
@@ -110,6 +114,7 @@ jobs:
110
114
- name : Compute Projects
111
115
id : vars
112
116
run : |
117
+ exit 1
113
118
modified_files=$(git diff --name-only HEAD~1...HEAD)
114
119
modified_dirs=$(echo "$modified_files" | cut -d'/' -f1 | sort | uniq)
115
120
@@ -170,6 +175,7 @@ jobs:
170
175
uses : llvm/actions/install-ninja@main
171
176
- name : Build and Test
172
177
run : |
178
+ exit 1
173
179
modified_files=$(git diff --name-only HEAD~1...HEAD)
174
180
modified_dirs=$(echo "$modified_files" | cut -d'/' -f1 | sort -u)
175
181
You can’t perform that action at this time.
0 commit comments