azure-pipelines-linux.yml 616 B

1234567891011121314151617181920212223242526272829
  1. # Docs see here:
  2. # https://aka.ms/yaml
  3. jobs:
  4. - job: 'cross_freeRTOS'
  5. displayName: 'Arch (freeRTOS)'
  6. pool:
  7. vmImage: 'ubuntu-18.04'
  8. variables:
  9. IDF_PATH: $(Build.BinariesDirectory)/esp-idf
  10. steps:
  11. - checkout: self
  12. submodules: recursive
  13. - task: Bash@3
  14. inputs:
  15. targetType: FilePath
  16. filePath: ./tools/azure-devops/freeRTOS/install.sh
  17. failOnStderr: false
  18. displayName: Installing required packages
  19. - task: Bash@3
  20. inputs:
  21. targetType: FilePath
  22. filePath: ./tools/azure-devops/freeRTOS/build.sh
  23. failOnStderr: false
  24. displayName: Building & Testing