File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ function get_branches() {
42
42
return get_branch_matrix ($ changed_branches );
43
43
}
44
44
45
- function get_asan_matrix (array $ branches ) {
45
+ function get_matrix_include (array $ branches ) {
46
46
$ jobs = [];
47
47
foreach ($ branches as $ branch ) {
48
48
$ jobs [] = [
@@ -65,7 +65,7 @@ function get_asan_matrix(array $branches) {
65
65
}
66
66
67
67
$ branches = get_branches ();
68
- $ asan_matrix = get_asan_matrix ($ branches );
68
+ $ matrix_include = get_matrix_include ($ branches );
69
69
70
70
echo '::set-output name=branches:: ' . json_encode ($ branches , JSON_UNESCAPED_SLASHES ) . "\n" ;
71
- echo '::set-output name=asan- matrix:: ' . json_encode ($ asan_matrix , JSON_UNESCAPED_SLASHES ) . "\n" ;
71
+ echo '::set-output name=matrix-include :: ' . json_encode ($ matrix_include , JSON_UNESCAPED_SLASHES ) . "\n" ;
Original file line number Diff line number Diff line change 10
10
runs-on : ubuntu-latest
11
11
outputs :
12
12
branches : ${{ steps.set-matrix.outputs.branches }}
13
- asan- matrix : ${{ steps.set-matrix.outputs.asan- matrix }}
13
+ matrix-include : ${{ steps.set-matrix.outputs.matrix-include }}
14
14
steps :
15
15
- uses : actions/checkout@v2
16
16
with :
39
39
branch : ${{ fromJson(needs.GENERATE_MATRIX.outputs.branches) }}
40
40
debug : [true, false]
41
41
zts : [true, false]
42
- include : ${{ fromJson(needs.GENERATE_MATRIX.outputs.asan- matrix) }}
42
+ include : ${{ fromJson(needs.GENERATE_MATRIX.outputs.matrix-include ) }}
43
43
name : " ${{ matrix.branch.name }}_LINUX_X64${{ matrix.name }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}"
44
44
runs-on : ubuntu-20.04
45
45
steps :
You can’t perform that action at this time.
0 commit comments