16 lines
411 B
YAML
16 lines
411 B
YAML
|
# RPI2, SDL2, 32-bit
|
||
|
steps:
|
||
|
- checkout: self
|
||
|
submodules: true
|
||
|
- script: make -j4 PLATFORM=rpi2-sdl2
|
||
|
displayName: 'Compile for RPI2 (SDL2) 32-bit'
|
||
|
|
||
|
- task: CopyFiles@2
|
||
|
inputs:
|
||
|
Contents: amiberry
|
||
|
TargetFolder: $(Build.ArtifactStagingDirectory)
|
||
|
|
||
|
- task: PublishBuildArtifacts@1
|
||
|
inputs:
|
||
|
PathtoPublish: $(Build.ArtifactStagingDirectory)
|
||
|
ArtifactName: rpi2_sdl2_release
|