File tree Expand file tree Collapse file tree 6 files changed +34
-18
lines changed Expand file tree Collapse file tree 6 files changed +34
-18
lines changed Original file line number Diff line number Diff line change @@ -164,8 +164,8 @@ jobs:
164
164
brew install gnu-sed
165
165
pip install distro pytest
166
166
167
-
168
- - uses : ./.github/actions/Build_LLVM
167
+ - name : Build LLVM and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }}
168
+ uses : ./.github/actions/Build_LLVM
169
169
with :
170
170
cache-hit : ${{ steps.cache.outputs.cache-hit }}
171
171
@@ -178,9 +178,11 @@ jobs:
178
178
${{ matrix.cling=='On' && 'cling' || '' }}
179
179
key : ${{ steps.cache.outputs.cache-primary-key }}
180
180
181
- - uses : ./.github/actions/Build_and_Test_CppInterOp
181
+ - name : Build and test CppInterOp
182
+ uses : ./.github/actions/Build_and_Test_CppInterOp
182
183
183
- - uses : ./.github/actions/Build_and_Test_cppyy
184
+ - name : Build and test cppyy
185
+ uses : ./.github/actions/Build_and_Test_cppyy
184
186
185
187
- name : Show debug info
186
188
if : ${{ failure() }}
Original file line number Diff line number Diff line change @@ -149,8 +149,8 @@ jobs:
149
149
brew install gnu-sed
150
150
pip install distro pytest
151
151
152
-
153
- - uses : ./.github/actions/Build_LLVM
152
+ - name : Build LLVM and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }}
153
+ uses : ./.github/actions/Build_LLVM
154
154
with :
155
155
cache-hit : ${{ steps.cache.outputs.cache-hit }}
156
156
@@ -163,9 +163,11 @@ jobs:
163
163
${{ matrix.cling=='On' && 'cling' || '' }}
164
164
key : ${{ steps.cache.outputs.cache-primary-key }}
165
165
166
- - uses : ./.github/actions/Build_and_Test_CppInterOp
166
+ - name : Build and test CppInterOp
167
+ uses : ./.github/actions/Build_and_Test_CppInterOp
167
168
168
- - uses : ./.github/actions/Build_and_Test_cppyy
169
+ - name : Build and test cppyy
170
+ uses : ./.github/actions/Build_and_Test_cppyy
169
171
170
172
- name : Show debug info
171
173
if : ${{ failure() }}
Original file line number Diff line number Diff line change @@ -163,7 +163,9 @@ jobs:
163
163
sudo apt install libeigen3-dev
164
164
sudo apt install libboost-all-dev
165
165
166
- - uses : ./.github/actions/Build_LLVM
166
+
167
+ - name : Build LLVM and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }}
168
+ uses : ./.github/actions/Build_LLVM
167
169
with :
168
170
cache-hit : ${{ steps.cache.outputs.cache-hit }}
169
171
@@ -183,7 +185,8 @@ jobs:
183
185
echo "CODE_COVERAGE=1" >> $GITHUB_ENV
184
186
echo "BUILD_TYPE=Debug" >> $GITHUB_ENV
185
187
186
- - uses : ./.github/actions/Build_and_Test_CppInterOp
188
+ - name : Build and test CppInterOp
189
+ uses : ./.github/actions/Build_and_Test_CppInterOp
187
190
188
191
- name : Prepare code coverage report
189
192
if : ${{ success() && (matrix.coverage == true) }}
@@ -205,7 +208,8 @@ jobs:
205
208
verbose : true
206
209
token : ${{ secrets.CODECOV_TOKEN }}
207
210
208
- - uses : ./.github/actions/Build_and_Test_cppyy
211
+ - name : Build and test cppyy
212
+ uses : ./.github/actions/Build_and_Test_cppyy
209
213
210
214
- name : Show debug info
211
215
if : ${{ failure() }}
Original file line number Diff line number Diff line change @@ -152,7 +152,9 @@ jobs:
152
152
# Install libraries used by the cppyy test suite
153
153
sudo apt install libeigen3-dev
154
154
sudo apt install libboost-all-dev
155
- - uses : ./.github/actions/Build_LLVM
155
+
156
+ - name : Build LLVM and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }}
157
+ uses : ./.github/actions/Build_LLVM
156
158
with :
157
159
cache-hit : ${{ steps.cache.outputs.cache-hit }}
158
160
@@ -172,7 +174,8 @@ jobs:
172
174
echo "CODE_COVERAGE=1" >> $GITHUB_ENV
173
175
echo "BUILD_TYPE=Debug" >> $GITHUB_ENV
174
176
175
- - uses : ./.github/actions/Build_and_Test_CppInterOp
177
+ - name : Build and test CppInterOp
178
+ uses : ./.github/actions/Build_and_Test_CppInterOp
176
179
177
180
- name : Prepare code coverage report
178
181
if : ${{ success() && (matrix.coverage == true) }}
@@ -194,7 +197,8 @@ jobs:
194
197
verbose : true
195
198
token : ${{ secrets.CODECOV_TOKEN }}
196
199
197
- - uses : ./.github/actions/Build_and_Test_cppyy
200
+ - name : Build and test cppyy
201
+ uses : ./.github/actions/Build_and_Test_cppyy
198
202
199
203
- name : Show debug info
200
204
if : ${{ failure() }}
Original file line number Diff line number Diff line change @@ -117,7 +117,8 @@ jobs:
117
117
choco install findutils
118
118
$env:PATH="C:\Program Files (x86)\GnuWin32\bin;$env:PATH"
119
119
120
- - uses : ./.github/actions/Build_LLVM
120
+ - name : Build LLVM and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }}
121
+ uses : ./.github/actions/Build_LLVM
121
122
with :
122
123
cache-hit : ${{ steps.cache.outputs.cache-hit }}
123
124
@@ -130,7 +131,8 @@ jobs:
130
131
${{ matrix.cling=='On' && 'cling' || '' }}
131
132
key : ${{ steps.cache.outputs.cache-primary-key }}
132
133
133
- - uses : ./.github/actions/Build_and_Test_CppInterOp
134
+ - name : Build and test CppInterOp
135
+ uses : ./.github/actions/Build_and_Test_CppInterOp
134
136
135
137
- name : Setup tmate session
136
138
if : ${{ failure() && runner.debug }}
Original file line number Diff line number Diff line change @@ -117,7 +117,8 @@ jobs:
117
117
choco install findutils
118
118
$env:PATH="C:\Program Files (x86)\GnuWin32\bin;$env:PATH"
119
119
120
- - uses : ./.github/actions/Build_LLVM
120
+ - name : Build LLVM and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }}
121
+ uses : ./.github/actions/Build_LLVM
121
122
with :
122
123
cache-hit : ${{ steps.cache.outputs.cache-hit }}
123
124
@@ -130,7 +131,8 @@ jobs:
130
131
${{ matrix.cling=='On' && 'cling' || '' }}
131
132
key : ${{ steps.cache.outputs.cache-primary-key }}
132
133
133
- - uses : ./.github/actions/Build_and_Test_CppInterOp
134
+ - name : Build and test CppInterOp
135
+ uses : ./.github/actions/Build_and_Test_CppInterOp
134
136
135
137
- name : Setup tmate session
136
138
if : ${{ failure() && runner.debug }}
You can’t perform that action at this time.
0 commit comments