From 5481609554662fc9f0a75286cc51520f62a266fc Mon Sep 17 00:00:00 2001 From: Adam Hathcock Date: Tue, 27 Feb 2018 08:48:45 +0000 Subject: [PATCH] Build with new cake --- .circleci/config.yml | 10 +++++++--- build.sh | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8cd5464c..a1fa617c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,10 +2,14 @@ version: 2 jobs: build: docker: - - image: adamhathcock/cake-build:latest + - image: microsoft/dotnet:2.0.5-sdk-2.1.4 steps: - checkout + - run: + name: Install unzip + command: | + apt-get update + apt-get install -y unzip - run: name: Build - command: ./build.sh - \ No newline at end of file + command: ./build.sh \ No newline at end of file diff --git a/build.sh b/build.sh index 90111e63..71dd07dc 100755 --- a/build.sh +++ b/build.sh @@ -8,7 +8,7 @@ # Define directories. SCRIPT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) TOOLS_DIR=$SCRIPT_DIR/tools -CAKE_VERSION=0.23.0 +CAKE_VERSION=0.26.0 CAKE_DLL=$TOOLS_DIR/Cake.CoreCLR.$CAKE_VERSION/Cake.dll # Make sure the tools folder exist.