From 5faeef8aa30114d05dd3f705d6ca74d55c9b322d Mon Sep 17 00:00:00 2001 From: Dimitris Panokostas Date: Wed, 16 Sep 2020 18:19:27 +0200 Subject: [PATCH] Update azure-pipelines.yml for Azure Pipelines Added 64-bit targets --- azure-pipelines.yml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6d119723..2cfdc407 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -8,11 +8,16 @@ trigger: pool: Default -steps: -- script: echo Hello, world! - displayName: 'Run a one-line script' +jobs: +- job: Build + strategy: + matrix: + SDL2: + platform: 'pi64' + DMX: + platform: 'pi64-dispmanx' + + steps: + - script: make -j4 PLATFORM=$(platform) + displayName: 'Compile $(platform) target' -- script: | - echo Add other tasks to build, test, and deploy your project. - echo See https://aka.ms/yaml - displayName: 'Run a multi-line script'