(matrices, file, **kw)
| 347 | |
| 348 | |
| 349 | def github(matrices, file, **kw): |
| 350 | for matrix in matrices: |
| 351 | comment(file, Kind.GhActions, fill_line(matrix.name, '=')) |
| 352 | for ndk in matrix.ndks: |
| 353 | comment(file, Kind.GhActions, fill_line(ndk, '-')) |
| 354 | for build in matrix.builds_by_ndk[ndk]: |
| 355 | first = True |
| 356 | for prop in build.all_properties: |
| 357 | if first: |
| 358 | print(' - ', end='', file=file) |
| 359 | first = False |
| 360 | else: |
| 361 | print(' ', end='', file=file) |
| 362 | print(build.case_format(prop + ': {' + prop + '}', shell_value), file=file) |
| 363 | |
| 364 | |
| 365 | ndk_regex = re.compile(r'^r(\d+)([a-z]?)(?:-beta(\d+))?$') |
nothing calls this directly
no test coverage detected