From 09aee2d1de89c8bfa700046ed3eacb7ca2a7a394 Mon Sep 17 00:00:00 2001 From: David Himmelstrup Date: Sat, 6 Jul 2019 19:28:47 +0800 Subject: [PATCH] Try installing stack with azure. --- azure-pipelines.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index aa91291..72a2066 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -10,10 +10,7 @@ pool: vmImage: 'ubuntu-latest' steps: -- script: echo Hello, world! - displayName: 'Run a one-line script' - - script: | - echo Add other tasks to build, test, and deploy your project. - echo See https://aka.ms/yaml - displayName: 'Run a multi-line script' + curl -L https://get.haskellstack.org/stable/linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack' + displayName: 'Install stack' +