-
-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved azure pipelines into subfolder
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# 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-32 | ||
|
||
jobs: | ||
- job: Build | ||
strategy: | ||
matrix: | ||
RPI4-DMX: | ||
platform: 'rpi4' | ||
RPI4-SDL2: | ||
platform: 'rpi4-sdl2' | ||
RPI3-DMX: | ||
platform: 'rpi3' | ||
RPI3-SDL2: | ||
platform: 'rpi3-sdl2' | ||
RPI2-DMX: | ||
platform: 'rpi2' | ||
RPI2-SDL2: | ||
platform: 'rpi2-sdl2' | ||
RPI1-DMX: | ||
platform: 'rpi1' | ||
RPI1-SDL2: | ||
platform: 'rpi1-sdl2' | ||
steps: | ||
- script: make -j4 PLATFORM=$(platform) | ||
displayName: 'Compile $(platform) target' |
File renamed without changes.