diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ac405a8356..b4ac92f2d4 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -42,8 +42,14 @@ stages: steps: - script: make arm_sdk_install 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 - displayName: 'Build the Unified Targets' + displayName: 'Build all oficial targets' - script: mkdir release; cp obj/*.hex release/ displayName: 'Copy artefacts' - task: PublishPipelineArtifact@1