22 lines
437 B
YAML
22 lines
437 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: RPI-64
|
|
|
|
jobs:
|
|
- job: Build
|
|
strategy:
|
|
matrix:
|
|
SDL2:
|
|
platform: 'pi64'
|
|
DMX:
|
|
platform: 'pi64-dispmanx'
|
|
|
|
steps:
|
|
- script: make -j4 PLATFORM=$(platform)
|
|
displayName: 'Compile $(platform) target'
|