andreped commited on
Commit
a2942fe
1 Parent(s): cd73668

setup python wheel build

Browse files
Files changed (1) hide show
  1. .github/workflows/build.yaml +8 -0
.github/workflows/build.yaml CHANGED
@@ -30,6 +30,14 @@ jobs:
30
  with:
31
  python-version: 3.7
32
 
 
 
 
 
 
 
 
 
33
  - name: Install program for ${{matrix.TARGET}}
34
  run: ${{matrix.CMD_BUILD}}
35
 
 
30
  with:
31
  python-version: 3.7
32
 
33
+ - name: Install dependencies
34
+ run: pip install wheel setuptools
35
+
36
+ - name: Build wheel
37
+ run: |
38
+ python setup.py bdist_wheel --universal
39
+ ls
40
+
41
  - name: Install program for ${{matrix.TARGET}}
42
  run: ${{matrix.CMD_BUILD}}
43