diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2019-03-28 14:13:54 -0700 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2019-03-28 14:14:47 -0700 |
| commit | ecc72365b6bd3416bcc372f283d6a550d2ad84c5 (patch) | |
| tree | f7115720e091dbe82c387a81577a541e6fbd3cb6 | |
| parent | 975817463f6550ccb6fd0740341537187736ac06 (diff) | |
Fix python deps and unix build directory.
| -rw-r--r-- | azure-pipelines.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 94c65ce41..15fdf8066 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -22,7 +22,7 @@ jobs: displayName: 'Install native deps' - bash: | sudo apt-get install -y python3-pip python3-setuptools - pip3 install --user sh click Sphinx sphinx-rtd-theme recommonmark polib + pip3 install --user sh click Sphinx sphinx-rtd-theme recommonmark polib wheel pip3 install --upgrade --user cpp-coveralls displayName: 'Install python deps' - bash: | @@ -34,11 +34,11 @@ jobs: make -C mpy-cross -j2 displayName: 'Build mpy-cross' - bash: | - make -C ports/unix deplibs -j2 - make -C ports/unix -j2 - make -C ports/unix coverage -j2 + make -j2 deplibs + make -j2 + make -j2 coverage displayName: 'Build unix' - workingDirectory: 'tools' + workingDirectory: 'ports/unix' - bash: | MICROPY_CPYTHON3=python3.5 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1 displayName: 'Test all' |
