Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ jobs:
macos:
uses: ./.github/workflows/task-unit-test.yml
with:
env: macos-latest
env: macos-14
run-valgrind: false
6 changes: 5 additions & 1 deletion .install/install_cmake.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ MODE=$1 # whether to install using sudo or not

if [[ $OS_TYPE = 'Darwin' ]]
then
brew install cmake
if ! command -v cmake &> /dev/null; then
brew install cmake
else
echo "cmake already installed"
fi
else
if [[ $processor = 'x86_64' ]]
then
Expand Down
Loading