From 2fe1cc5081c524e65de5f4fcb1bc65621e27ae87 Mon Sep 17 00:00:00 2001 From: Guido Draheim Date: Sun, 26 May 2019 13:24:29 +0200 Subject: [PATCH] azure make check --- azure-pipelines.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 40a2e1e..074348a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,5 +11,15 @@ pool: steps: - script: | - sh configure && make && make check - displayName: 'make' + rm -rf build + mkdir build + displayName: 'build dir' +- script: | + cd build && sh ../configure + displayName: 'configure' +- script: | + cd build && make all + displayName: 'make all' +- script: | + cd build && make check + displayName: 'make check' -- 2.40.0