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