From d70608acb8d9c1d8f41ae40ffab88e34aceda520 Mon Sep 17 00:00:00 2001 From: RandomityGuy <31925790+RandomityGuy@users.noreply.github.com> Date: Fri, 16 Dec 2022 12:23:58 +0530 Subject: [PATCH] Add .circleci/config.yml --- .circleci/config.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 00000000..7924781a --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,23 @@ +# Use the latest 2.1 version of CircleCI pipeline process engine. +# See: https://circleci.com/docs/2.0/configuration-reference +version: 2.1 + +# Define a job to be invoked later in a workflow. +# See: https://circleci.com/docs/2.0/configuration-reference/#jobs +jobs: + build: + macos: + xcode: 14.1.0 # Specify the Xcode version to use + + steps: + - checkout + - run: | + brew install cmake + brew install libpthread-stubs + +# Invoke jobs via workflows +# See: https://circleci.com/docs/2.0/configuration-reference/#workflows +workflows: + say-hello-workflow: + jobs: + - build