Skip to content

Commit

Permalink
make macOS CI more verbose
Browse files Browse the repository at this point in the history
Signed-off-by: Eran Ifrah <[email protected]>
  • Loading branch information
eranif committed Nov 23, 2024
1 parent 63d324d commit af37393
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,10 @@ jobs:
- name: Build, test and install Codelite
run: |
mkdir build-release
cd build-release
cd $_
brew install autoconf automake libtool gettext
cmake .. -DCMAKE_BUILD_TYPE=Release -Wno-dev -DWITH_MYSQL=1 -DWITH_POSTGRES=1 -DWITH_CHATAI=1 -DBUILD_TESTING=1
cmake --build . -j $(sysctl -n hw.physicalcpu)
cmake --build . --target install
ctest --output-on-failure

This comment has been minimized.

Copy link
@Jarod42

Jarod42 Nov 23, 2024

Contributor

I think
cmake --build . --verbose --parallell $(sysctl -n hw.physicalcpu) --target install
would be similar.

Any reasons to drop testing?
ctest --output-on-failure

This comment has been minimized.

Copy link
@eranif

eranif Nov 23, 2024

Author Owner

No reason at all... I removed it when I tried to figure out what was going wrong with the macOS (until I realized that I was building for macosx=10.8 which disables optional::value)

cmake .. -DCMAKE_BUILD_TYPE=Release -Wno-dev -DWITH_MYSQL=1 -DWITH_POSTGRES=1 -DWITH_CHATAI=1
make -j$(sysctl -n hw.physicalcpu) VERBOSE=1 install
# Not the right command/path for codelite
# - name: codelite --version
# run: codelite.app/Contents/MacOS/codelite --version || exit 0 # codelite --version returns -1

0 comments on commit af37393

Please sign in to comment.