Skip to content

Commit 2199593

Browse files
Update build-amd64.yml (#37)
* Update build-amd64.yml * Update build-amd64.yml * Update build-amd64.yml * Update build-amd64.yml * Apply suggestions from code review * Apply suggestions from code review Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Apply suggestions from code review * Apply suggestions from code review * Update build-amd64.yml --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 0a573d5 commit 2199593

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build-amd64.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ concurrency:
1818
jobs:
1919
build:
2020
strategy:
21+
fail-fast: false
2122
matrix:
2223
clang-version: [ 18, 17, 16, 15, 14, 13, 12.0.1, 12, 11, 10, 9, 8, 7 ]
2324
os: [ linux, macosx, windows ]
@@ -131,7 +132,9 @@ jobs:
131132
- name: patch cmake implicit link libraries on macosx
132133
if: ${{ matrix.os == 'macosx' }}
133134
shell: bash
134-
run: sed -i.backup 's/gcc_eh.\*|/gcc_eh.*|gcc_ext.*|/g' $(find /opt/homebrew/Cellar -name CMakeParseImplicitLinkInfo.cmake)
135+
run: |
136+
sed -i.backup 's/gcc_eh.\*|/gcc_eh.*|gcc_ext.*|/g' "$(find /opt/homebrew/Cellar -name CMakeParseImplicitLinkInfo.cmake)"
137+
brew install gcc@11
135138
- name: cmake
136139
run: cmake -S ${{ matrix.release }}/llvm -B ${{ matrix.release }}/build ${{ env.COMMON_CMAKE_ARGS }} ${{ matrix.os-cmake-args }} ${{ matrix.extra-cmake-args }}
137140
- name: build

0 commit comments

Comments
 (0)