From a47d96ce0b06354f7b560b8d031cd507dfa0acf5 Mon Sep 17 00:00:00 2001 From: AnyOldName3 Date: Wed, 7 Oct 2020 19:06:28 +0000 Subject: [PATCH] Install CMake on MacOS if it's missing --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 27cc6d815c..a04e347c43 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -60,7 +60,8 @@ MacOS: tags: - macos stage: build - allow_failure: true + before_script: + - command -v cmake >/dev/null 2>&1 || brew install cmake script: - rm -fr build/* # remove anything in the build directory - CI/before_install.osx.sh