Skip to content

Commit

Permalink
[Test] Use custom names for workflow jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
rikyoz committed Nov 6, 2023
1 parent 78e4e28 commit 0dd7722
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ jobs:
- c_compiler: gcc-12
bit7z_link_libcpp: ON

name: |
${{ matrix.build_type }} build, Compiler: ${{ matrix.c_compiler }}, AUTO_FORMAT: ${{ matrix.bit7z_auto_format }}, REGEX_MATCHING: ${{ matrix.bit7z_regex_matching }}, LINK_LIBCPP: ${{ matrix.bit7z_link_libcpp }}
steps:
- uses: actions/checkout@v3

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ jobs:
- bit7z_7zip_version: 22.01
bit7z_build_for_p7zip: ON

name: |
${{ matrix.build_type }} build, Compiler: ${{ matrix.c_compiler }}, 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 }}
steps:
- uses: actions/checkout@v3

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
bit7z_path_sanitization: [OFF, ON]
bit7z_7zip_version: [22.01, 23.01]

name: |
${{ matrix.build_type }} build, 7-Zip: ${{ matrix.bit7z_7zip_version }}, AUTO_FORMAT: ${{ matrix.bit7z_auto_format }}, REGEX_MATCHING: ${{ matrix.bit7z_regex_matching }}, USE_NATIVE_STRING: ${{ matrix.bit7z_use_native_string }}, AUTO_PREFIX_LONG_PATHS: ${{ matrix.bit7z_auto_prefix_long_paths }}, USE_SYSTEM_CODEPAGE: ${{ matrix.bit7z_use_system_codepage }}, PATH_SANITIZATION=${{ matrix.bit7z_path_sanitization }}
steps:
- uses: actions/checkout@v3

Expand Down

0 comments on commit 0dd7722

Please sign in to comment.