File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 2828 - name : Check out code
2929 uses : actions/checkout@v2
3030
31+ - name : Build web for Linux
32+ if : ${{ matrix.os == 'ubuntu-latest' }}
33+ run : |
34+ git reset --hard
35+ pip install -r ci/requirements-wheel.txt
36+ python setup.py build_web
37+
3138 - name : Set up QEMU
3239 if : ${{ matrix.arch == 'aarch64' }}
3340 uses : docker/setup-qemu-action@v1
5057 CIBW_MANYLINUX_X86_64_IMAGE : manylinux2014
5158
5259 - name : Build source
53- if : ${{ matrix.os == 'ubuntu-latest' && matrix.arch == 'auto'}}
60+ if : ${{ matrix.os == 'ubuntu-latest' && matrix.arch == 'auto' }}
5461 run : |
5562 git reset --hard
5663 pip install -r ci/requirements-wheel.txt
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ install_requires =
4848
4949[options.packages.find]
5050exclude =
51+ benchmarks*
5152 *.tests.*
5253 *.tests
5354
You can’t perform that action at this time.
0 commit comments