Skip to content

Commit 7a29efb

Browse files
committed
Fix macOS workflow build configuration
Generated by CodeLite Signed-off-by: Eran Ifrah <eran@codelite.org>
1 parent 37a9504 commit 7a29efb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/macos.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ jobs:
2121

2222
- name: Install Codelite's dependencies
2323
run: |
24-
# brew update && brew upgrade # fails somehow
24+
brew update || true
25+
brew upgrade || true
2526
brew install git || true
2627
brew install cmake || true
2728
brew install libssh || true
@@ -60,7 +61,7 @@ jobs:
6061
cd $_
6162
brew install autoconf automake libtool gettext
6263
export CMAKE_POLICY_VERSION_MINIMUM=3.5
63-
cmake .. -DCMAKE_BUILD_TYPE=Release -Wno-dev -DWITH_MYSQL=1 -DWITH_POSTGRES=1 -DWITH_CHATAI=1 -DBUILD_TESTING=1
64+
cmake .. -DCMAKE_BUILD_TYPE=Release -Wno-dev -DWITH_MYSQL=1 -DWITH_POSTGRES=1 -DBUILD_TESTING=1
6465
make -j$(sysctl -n hw.physicalcpu) VERBOSE=1 install
6566
ctest --output-on-failure
6667

0 commit comments

Comments
 (0)