mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
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>
This commit is contained in:
parent
6608acb29d
commit
c21a5286af
2 changed files with 16 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -251,6 +251,12 @@ Check for pre-schema tags:
|
|||
# have no matches.
|
||||
- git grep u-boot,dm- -- '*.dts*' && exit 1 || exit 0
|
||||
|
||||
# Check we can package the Python tools
|
||||
Check packing of Python tools:
|
||||
stage: testsuites
|
||||
script:
|
||||
- make pip
|
||||
|
||||
# Test sandbox with test.py
|
||||
sandbox test.py:
|
||||
variables:
|
||||
|
|
Loading…
Reference in a new issue