Skip to content

Commit

Permalink
[Test] GCC 11 and 12 on macOS runners
Browse files Browse the repository at this point in the history
  • Loading branch information
rikyoz committed Oct 28, 2023
1 parent 58015a9 commit 2e83ab7
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/test_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,26 @@ jobs:

matrix:
build_type: [Debug, Release]
c_compiler: [gcc-11, gcc-12, clang]
bit7z_auto_format: [OFF, ON]
bit7z_regex_matching: [OFF, ON]
bit7z_link_libcpp: [OFF, ON]
include:
- c_compiler: gcc-11
cpp_compiler: g++-11
- c_compiler: gcc-12
cpp_compiler: g++-12
- c_compiler: clang
cpp_compiler: clang++

steps:
- uses: actions/checkout@v3

- name: Building and testing bit7z
uses: ./.github/actions/test_action
with:
c_compiler: clang
cpp_compiler: clang++
c_compiler: ${{ matrix.c_compiler }}
cpp_compiler: ${{ matrix.cpp_compiler }}
sevenzip_version: 23.01
build_type: ${{ matrix.build_type }}
build_flags: |
Expand Down

0 comments on commit 2e83ab7

Please sign in to comment.