From 4d77bbd2c72b9bc4d6ca6d423aebf5bbe6a0bdbb Mon Sep 17 00:00:00 2001 From: Yonas Kolb Date: Sat, 29 Sep 2018 17:31:43 +1000 Subject: [PATCH] upgrade circleci format --- .circleci/config.yml | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ec28cdfb..6cc7aac6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,16 +5,29 @@ jobs: xcode: "9.3.0" steps: - checkout - - run: swift build - - run: swift test - - run: make build + - run: + name: Build + command: swift build + - run: + name: Test + command: swift test + - run: + name: Build release + command: make build macOS_swift_4.2: macos: xcode: "10.0.0" steps: - checkout - - run: swift build - - run: make build + - run: + name: Build + command: swift build + - run: + name: Test + command: swift test + #- run: + #name: Build release + #command: make build workflows: version: 2 workflow: