We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37a9504 commit 7a29efbCopy full SHA for 7a29efb
.github/workflows/macos.yml
@@ -21,7 +21,8 @@ jobs:
21
22
- name: Install Codelite's dependencies
23
run: |
24
- # brew update && brew upgrade # fails somehow
+ brew update || true
25
+ brew upgrade || true
26
brew install git || true
27
brew install cmake || true
28
brew install libssh || true
@@ -60,7 +61,7 @@ jobs:
60
61
cd $_
62
brew install autoconf automake libtool gettext
63
export CMAKE_POLICY_VERSION_MINIMUM=3.5
- 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
65
make -j$(sysctl -n hw.physicalcpu) VERBOSE=1 install
66
ctest --output-on-failure
67
0 commit comments