Improve format detection for VHD/VHDX archives #386
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test on macOS | |
| on: | |
| pull_request: | |
| push: | |
| paths: | |
| - '.github/actions/**' | |
| - '.github/workflows/test_macos.yml' | |
| - 'cmake/**' | |
| - 'include/**' | |
| - 'src/**' | |
| - 'tests/**' | |
| - 'CMakeLists.txt' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build_macos: | |
| runs-on: ${{ matrix.os }} | |
| if: | | |
| !contains(github.event.head_commit.message, '[test-windows]') | |
| && !contains(github.event.head_commit.message, '[test-linux]') | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [macos-13, macos-14, macos-15] | |
| c_compiler: [gcc-11, gcc-12, gcc-13, gcc-14, clang] | |
| arch: [x64, arm64] | |
| bit7z_7zip_version: [23.01, 24.09] | |
| bit7z_auto_format: [OFF, ON] | |
| bit7z_detect_from_extension: [OFF, ON] | |
| bit7z_regex_matching: [OFF, ON] | |
| bit7z_link_libcpp: [OFF, ON] | |
| include: | |
| - os: macos-13 | |
| os_version: 13 | |
| - os: macos-14 | |
| os_version: 14 | |
| - os: macos-15 | |
| os_version: 15 | |
| - c_compiler: gcc-11 | |
| cpp_compiler: g++-11 | |
| enable_sanitizers: OFF | |
| - c_compiler: gcc-12 | |
| cpp_compiler: g++-12 | |
| enable_sanitizers: OFF | |
| - c_compiler: gcc-13 | |
| cpp_compiler: g++-13 | |
| enable_sanitizers: OFF | |
| - c_compiler: gcc-14 | |
| cpp_compiler: g++-14 | |
| enable_sanitizers: OFF | |
| - c_compiler: clang | |
| cpp_compiler: clang++ | |
| enable_sanitizers: ON | |
| exclude: | |
| - c_compiler: gcc-11 | |
| bit7z_link_libcpp: ON | |
| - c_compiler: gcc-12 | |
| bit7z_link_libcpp: ON | |
| - c_compiler: gcc-13 | |
| bit7z_link_libcpp: ON | |
| - c_compiler: gcc-14 | |
| bit7z_link_libcpp: ON | |
| - os: macos-15 | |
| c_compiler: gcc-11 | |
| - os: macos-15 | |
| c_compiler: gcc-12 | |
| - os: macos-15 | |
| c_compiler: gcc-13 | |
| - os: macos-15 | |
| bit7z_7zip_version: 23.01 | |
| - os: macos-15 | |
| arch: x64 | |
| - os: macos-14 | |
| arch: x64 | |
| - os: macos-13 | |
| arch: arm64 | |
| - bit7z_auto_format: OFF | |
| bit7z_detect_from_extension: ON | |
| name: | | |
| macOS ${{ matrix.os_version }} (${{ matrix.arch }}), ${{ matrix.c_compiler }}, 7-Zip ${{ matrix.bit7z_7zip_version }}${{ (matrix.bit7z_auto_format == 'ON') && ', AUTO_FORMAT' || '' }}${{ (matrix.bit7z_detect_from_extension == 'ON') && ', DETECT_FROM_EXT' || '' }}${{ (matrix.bit7z_regex_matching == 'ON') && ', REGEX_MATCHING' || '' }}${{ (matrix.bit7z_link_libcpp == 'ON') && ', LINK_LIBCPP' || '' }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install XCode | |
| if: ${{ contains(matrix.os, 'macos-15') }} | |
| uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: latest-stable | |
| - name: Install XCode | |
| if: ${{ contains(matrix.os, 'macos-14') }} | |
| uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: '15.3' | |
| - name: Install XCode | |
| if: ${{ contains(matrix.os, 'macos-13') && contains(matrix.c_compiler, 'gcc-14') }} | |
| uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: '15.2' | |
| - name: Install XCode | |
| if: ${{ contains(matrix.os, 'macos-13') && ( contains(matrix.c_compiler, 'gcc-11') || contains(matrix.c_compiler, 'gcc-12') || contains(matrix.c_compiler, 'gcc-13') ) }} | |
| uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: '14.3.1' | |
| - name: Install GCC 11 | |
| if: ${{ contains(matrix.c_compiler, 'gcc-11') }} | |
| shell: bash | |
| run: | |
| brew install gcc@11 | |
| - name: Reinstall GCC 14 on macOS 15 | |
| if: ${{ contains(matrix.os, 'macos-15') && contains(matrix.c_compiler, 'gcc-14') }} | |
| shell: bash | |
| run: | |
| brew reinstall gcc@14 | |
| - name: Building and testing bit7z | |
| uses: ./.github/actions/ci_action | |
| with: | |
| arch: ${{ matrix.arch }} | |
| c_compiler: ${{ matrix.c_compiler }} | |
| cpp_compiler: ${{ matrix.cpp_compiler }} | |
| sevenzip_version: ${{ matrix.bit7z_7zip_version }} | |
| enable_sanitizers: ${{ matrix.enable_sanitizers }} | |
| build_flags: |- | |
| -DBIT7Z_TESTS_USE_SYSTEM_7ZIP=OFF -DBIT7Z_AUTO_FORMAT=${{ matrix.bit7z_auto_format }} -DBIT7Z_DETECT_FROM_EXTENSION=${{ matrix.bit7z_detect_from_extension }} -DBIT7Z_REGEX_MATCHING=${{ matrix.bit7z_regex_matching }} -DBIT7Z_LINK_LIBCPP=${{ matrix.bit7z_link_libcpp }} |