File tree Expand file tree Collapse file tree 1 file changed +5
-13
lines changed Expand file tree Collapse file tree 1 file changed +5
-13
lines changed Original file line number Diff line number Diff line change @@ -25,10 +25,8 @@ concurrency:
25
25
26
26
jobs :
27
27
premerge-checks-linux :
28
- if : >-
29
- false && github.repository_owner == 'llvm' &&
30
- (github.event_name != 'pull_request' || github.event.action != 'closed')
31
- runs-on : llvm-premerge-linux-runners
28
+ if : (github.event_name != 'pull_request' || github.event.action != 'closed')
29
+ runs-on : ubuntu-22.04
32
30
steps :
33
31
- name : Checkout LLVM
34
32
uses : actions/checkout@v4
83
81
./.ci/monolithic-linux.sh "$(echo ${linux_projects} | tr ' ' ';')" "$(echo ${linux_check_targets})" "$(echo ${linux_runtimes} | tr ' ' ';')" "$(echo ${linux_runtime_check_targets})"
84
82
85
83
premerge-checks-windows :
86
- if : >-
87
- false && github.repository_owner == 'llvm' &&
88
- (github.event_name != 'pull_request' || github.event.action != 'closed')
89
- runs-on : llvm-premerge-windows-runners
84
+ if : (github.event_name != 'pull_request' || github.event.action != 'closed')
85
+ runs-on : windows-2022
90
86
defaults :
91
87
run :
92
88
shell : bash
@@ -144,11 +140,7 @@ jobs:
144
140
145
141
permerge-check-macos :
146
142
runs-on : macos-14
147
- if : >-
148
- github.repository_owner == 'llvm' &&
149
- (startswith(github.ref_name, 'release/') ||
150
- startswith(github.base_ref, 'release/')) &&
151
- (github.event_name != 'pull_request' || github.event.action != 'closed')
143
+ if : (github.event_name != 'pull_request' || github.event.action != 'closed')
152
144
steps :
153
145
- name : Checkout LLVM
154
146
uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments