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'