File tree 2 files changed +9
-1
lines changed 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 23
23
- name : Check out code
24
24
uses : actions/checkout@v2
25
25
26
+ - name : Build web for Linux
27
+ if : ${{ matrix.os == 'ubuntu-latest' }}
28
+ run : |
29
+ git reset --hard
30
+ pip install -r ci/requirements-wheel.txt
31
+ python setup.py build_web
32
+
26
33
- name : Build wheels
27
34
uses : pypa/cibuildwheel@v2.3.1
28
35
env :
32
39
CIBW_MANYLINUX_X86_64_IMAGE : manylinux1
33
40
34
41
- name : Build source
35
- if : ${{ matrix.os == 'ubuntu-latest' && matrix.arch == 'auto'}}
42
+ if : ${{ matrix.os == 'ubuntu-latest' && matrix.arch == 'auto' }}
36
43
run : |
37
44
git reset --hard
38
45
pip install -r ci/requirements-wheel.txt
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ install_requires =
48
48
49
49
[options.packages.find]
50
50
exclude =
51
+ benchmarks*
51
52
*.tests.*
52
53
*.tests
53
54
You can’t perform that action at this time.
0 commit comments