From a5d113c1d31db0ce2929f003f1584558e4828237 Mon Sep 17 00:00:00 2001 From: James Duffield Date: Tue, 21 Jan 2020 13:05:43 +0000 Subject: [PATCH] Fix AzureDevOps pipeline (#64) * Added Ruby version task and Jekyll, Bundler and Dependencies installation tasks * Updated branch trigger for testing purposes * Updated pipeline to fix install error * Updated pipeline yaml to use master branch --- azure-pipelines.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 11d91bbd..594e8629 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -10,6 +10,12 @@ pool: vmImage: 'Ubuntu-16.04' steps: +- task: UseRubyVersion@0 + displayName: 'Use Ruby >= 2.4' + +- script: 'gem install jekyll bundler' + displayName: 'Install jekyll and bundler gems' + - task: NodeTool@0 inputs: versionSpec: '10.x'