File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 29
29
lint :
30
30
needs : [detect_changes]
31
31
if : |
32
+ github.event.pull_request.head.repo.full_name == 'intel/llvm' ||
32
33
!contains(needs.detect_changes.outputs.filters, 'ci')
33
34
runs-on : [Linux, build]
34
35
container :
62
63
test_matrix :
63
64
needs : [detect_changes]
64
65
if : |
66
+ github.event.pull_request.head.repo.full_name == 'intel/llvm' ||
65
67
!contains(needs.detect_changes.outputs.filters, 'ci')
66
68
name : Generate Test Matrix
67
69
uses : ./.github/workflows/sycl_gen_test_matrix.yml
77
79
if : |
78
80
always()
79
81
&& (success() || contains(github.event.pull_request.labels.*.name, 'ignore-lint'))
80
- && !contains(needs.detect_changes.outputs.filters, 'ci')
82
+ && (github.event.pull_request.head.repo.full_name == 'intel/llvm'
83
+ || !contains(needs.detect_changes.outputs.filters, 'ci'))
81
84
uses : ./.github/workflows/sycl_linux_build_and_test.yml
82
85
secrets : inherit
83
86
with :
Original file line number Diff line number Diff line change 29
29
lint :
30
30
needs : [detect_changes]
31
31
if : |
32
+ github.event.pull_request.head.repo.full_name == 'intel/llvm' ||
32
33
!contains(needs.detect_changes.outputs.filters, 'ci')
33
34
runs-on : [Linux, build]
34
35
container :
62
63
test_matrix :
63
64
needs : [detect_changes]
64
65
if : |
66
+ github.event.pull_request.head.repo.full_name == 'intel/llvm' ||
65
67
!contains(needs.detect_changes.outputs.filters, 'ci')
66
68
name : Generate Test Matrix
67
69
uses : ./.github/workflows/sycl_gen_test_matrix.yml
76
78
always()
77
79
&& (success() || contains(github.event.pull_request.labels.*.name, 'ignore-lint'))
78
80
&& github.repository == 'intel/llvm'
79
- && !contains(needs.detect_changes.outputs.filters, 'ci')
81
+ && (github.event.pull_request.head.repo.full_name == 'intel/llvm'
82
+ || !contains(needs.detect_changes.outputs.filters, 'ci'))
80
83
uses : ./.github/workflows/sycl_windows_build_and_test.yml
81
84
with :
82
85
lts_matrix : ${{ needs.test_matrix.outputs.lts_wn_matrix }}
You can’t perform that action at this time.
0 commit comments