File tree 1 file changed +17
-4
lines changed
1 file changed +17
-4
lines changed Original file line number Diff line number Diff line change 48
48
--from-ref 'origin/${{ github.event.pull_request.base.ref }}' \
49
49
--to-ref '${{ github.event.pull_request.head.ref }}' \
50
50
--only-rhel
51
- id : gen
51
+ id : gen1
52
52
shell : bash
53
53
54
54
- name : Determine targets to build based on changed files
@@ -61,16 +61,29 @@ jobs:
61
61
--from-ref '5e5841e116d75e643d3f84cd918cbdcf172076d5' \
62
62
--to-ref '1d8611e3f89a82e543bf67d0b49a02e11eb7c203' \
63
63
--only-rhel
64
- id : gen
64
+ id : gen2
65
65
shell : bash
66
66
67
- build :
67
+ builda :
68
68
needs : ["gen"]
69
69
strategy :
70
70
fail-fast : false
71
71
matrix : " ${{ fromJson(needs.gen.outputs.matrix) }}"
72
72
uses : ./.github/workflows/build-notebooks-TEMPLATE.yaml
73
- if : ${{ fromJson(needs.gen.outputs.has_jobs) }}
73
+ if : ${{ fromJson(needs.gen1.outputs.has_jobs) }}
74
+ with :
75
+ target : " ${{ matrix.target }}"
76
+ github : " ${{ toJSON(github) }}"
77
+ subscription : true
78
+ secrets : inherit
79
+
80
+ buildb :
81
+ needs : ["gen"]
82
+ strategy :
83
+ fail-fast : false
84
+ matrix : " ${{ fromJson(needs.gen.outputs.matrix) }}"
85
+ uses : ./.github/workflows/build-notebooks-TEMPLATE.yaml
86
+ if : ${{ fromJson(needs.gen2.outputs.has_jobs) }}
74
87
with :
75
88
target : " ${{ matrix.target }}"
76
89
github : " ${{ toJSON(github) }}"
You can’t perform that action at this time.
0 commit comments