From fd610b97d2e343d5abf87562ef2af1983f12ec56 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sat, 29 Jun 2019 13:04:59 +0200 Subject: [PATCH] Azure: remove `cd compiler` --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 7c1fee46f1..fd9a4ffb93 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -8,10 +8,10 @@ jobs: sudo apt install -y libglfw3 libglfw3-dev libfreetype6-dev libcurl3-dev displayName: 'Install Dependencies' - script: | - cd compiler && make + make displayName: 'Build V' - script: | - cd compiler && make test + make test displayName: 'Run Tests' - job: WindowsBuild pool: @@ -26,7 +26,7 @@ jobs: brew install glfw freetype curl displayName: 'Install Dependencies' - script: | - cd compiler && make && make test + make && make test displayName: 'Build V' trigger: branches: