From 7ccdcb94726febc273e7a0647f9c8ec9bc49104f Mon Sep 17 00:00:00 2001 From: Adlai Holler Date: Fri, 2 Nov 2018 09:12:51 -0700 Subject: [PATCH] Fix the config and limit the branch --- .circleci/config.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 34f4040306..1f2c6702b9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,10 +6,17 @@ version: 2 jobs: build: + # Limit to Testing branch + branches: + only: + - AHCircleCI + # Specify the Xcode version to use macos: xcode: "9.4.1" steps: - checkout - - command: build.sh all + - run: + name: Build.sh all + command: ./build.sh all