diff options
author | Simon Glass | 2023-02-23 18:18:24 -0700 |
---|---|---|
committer | Simon Glass | 2023-03-08 11:40:56 -0800 |
commit | c21a5286af8571c4c729914edd2b2e4c478ad696 (patch) | |
tree | 6cf9821f54cd715bb63891f4350e3a11becd1a6f /.azure-pipelines.yml | |
parent | 6608acb29d25f354d4c9574b126616c582fcc1bc (diff) |
CI: Add a check for building tools for PyPi
Add a simple check that the PyPi packages can be built.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to '.azure-pipelines.yml')
-rw-r--r-- | .azure-pipelines.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 30025ff7517..61ada4d681f 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -232,6 +232,16 @@ stages: # have no matches. - script: git grep u-boot,dm- -- '*.dts*' && exit 1 || exit 0 + - job: check_packing_of_python_tools + displayName: 'Check we can package the Python tools' + pool: + vmImage: $(ubuntu_vm) + container: + image: $(ci_runner_image) + options: $(container_option) + steps: + - script: make pip + - stage: test_py jobs: - job: test_py |