Skip to content

Commit 67c9521

Browse files
committed
fix: update build workflow
1 parent 3777ce6 commit 67c9521

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build-amd64.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,14 +134,16 @@ jobs:
134134
- name: patch cmake implicit link libraries on macosx
135135
if: ${{ matrix.os == 'macosx' }}
136136
shell: bash
137-
run: |
138137
run: |
139138
sed -i.backup 's/gcc_eh.\*|/gcc_eh.*|gcc_ext.*|/g' "$(find /opt/homebrew/Cellar -name CMakeParseImplicitLinkInfo.cmake)"
140139
brew install gcc@11
141140
- name: update homebrew
142141
if: ${{ matrix.os == 'macosx' && matrix.clang-version >= '18' }}
143142
shell: bash
144-
run: brew upgrade node
143+
run: |
144+
brew update
145+
brew upgrade
146+
brew cleanup
145147
- name: cmake
146148
run: cmake -S ${{ matrix.release }}/llvm -B ${{ matrix.release }}/build ${{ env.COMMON_CMAKE_ARGS }} ${{ matrix.os-cmake-args }} ${{ matrix.extra-cmake-args }}
147149
- name: build

0 commit comments

Comments
 (0)