Skip to content

Commit

Permalink
Improve job names on Ubuntu runner
Browse files Browse the repository at this point in the history
  • Loading branch information
rikyoz committed Nov 7, 2023
1 parent ea4b767 commit 286e257
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
bit7z_build_for_p7zip: ON

name: |
Ubuntu, ${{ matrix.c_compiler }}, ${{ matrix.build_type }}, 7-Zip ${{ matrix.bit7z_7zip_version }}, AUTO_FORMAT: ${{ matrix.bit7z_auto_format }}, REGEX_MATCHING: ${{ matrix.bit7z_regex_matching }}, LINK_LIBCPP: ${{ matrix.bit7z_link_libcpp }}, BUILD_FOR_P7ZIP: ${{ matrix.bit7z_build_for_p7zip }}
Ubuntu, ${{ matrix.c_compiler }}, ${{ matrix.build_type }}, 7-Zip ${{ matrix.bit7z_7zip_version }}${{ (matrix.bit7z_auto_format == 'ON') && ', AUTO_FORMAT' || '' }}${{ (matrix.bit7z_regex_matching == 'ON') && ', REGEX_MATCHING' || '' }}${{ (matrix.bit7z_link_libcpp == 'ON') && ', LINK_LIBCPP' || '' }}${{ (matrix.bit7z_build_for_p7zip == 'ON') && ', BUILD_FOR_P7ZIP' || '' }}
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 286e257

Please sign in to comment.