1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-15 12:25:20 +03:00

Merge pull request #10470 from mikeller/added_unit_tests_to_azure

Added unit test / sanity check runs to the Azure script.
This commit is contained in:
Michael Keller 2021-01-11 06:51:13 +08:00 committed by GitHub
commit 38c792c1c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,8 +42,14 @@ stages:
steps: steps:
- script: make arm_sdk_install - script: make arm_sdk_install
displayName: 'Install the build toolchain' displayName: 'Install the build toolchain'
- script: sudo apt-get install -y libblocksruntime-dev
displayName: 'Install extra packages'
- script: make checks
displayName: 'Run sanity checks'
- script: make test-all
displayName: 'Run all unit tests'
- script: make all - script: make all
displayName: 'Build the Unified Targets' displayName: 'Build all oficial targets'
- script: mkdir release; cp obj/*.hex release/ - script: mkdir release; cp obj/*.hex release/
displayName: 'Copy artefacts' displayName: 'Copy artefacts'
- task: PublishPipelineArtifact@1 - task: PublishPipelineArtifact@1