File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 8686 - uses : actions/checkout@v6
8787
8888 - name : Install XCode
89- if : ${{ contains(matrix.os, 'macos-15') }}
89+ if : ${{ contains(matrix.os, 'macos-15') || contains(matrix.os, 'macos-26') }}
9090 uses : maxim-lobanov/setup-xcode@v1
9191 with :
9292 xcode-version : latest-stable
@@ -109,6 +109,18 @@ jobs:
109109 run :
110110 brew reinstall gcc@14
111111
112+ - name : Reinstall GCC 14 on macOS 26
113+ if : ${{ contains(matrix.os, 'macos-26') && contains(matrix.c_compiler, 'gcc-14') }}
114+ shell : bash
115+ run :
116+ brew reinstall gcc@14
117+
118+ - name : Reinstall GCC 15 on macOS 26
119+ if : ${{ contains(matrix.os, 'macos-26') && contains(matrix.c_compiler, 'gcc-15') }}
120+ shell : bash
121+ run :
122+ brew reinstall gcc@15
123+
112124 - name : Building and testing bit7z
113125 uses : ./.github/actions/ci_action
114126 with :
You can’t perform that action at this time.
0 commit comments