redquark-amiberry-rb/azure-pipelines.yml
Dimitris Panokostas 5faeef8aa3 Update azure-pipelines.yml for Azure Pipelines
Added 64-bit targets
2020-09-16 18:19:27 +02:00

23 lines
438 B
YAML

# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
trigger:
- master
pool: Default
jobs:
- job: Build
strategy:
matrix:
SDL2:
platform: 'pi64'
DMX:
platform: 'pi64-dispmanx'
steps:
- script: make -j4 PLATFORM=$(platform)
displayName: 'Compile $(platform) target'