File tree Expand file tree Collapse file tree 1 file changed +13
-19
lines changed Expand file tree Collapse file tree 1 file changed +13
-19
lines changed Original file line number Diff line number Diff line change 11name : Build
22
3- on : [push, pull_request]
4-
3+ on : [push]
54
65jobs :
76 build_wheels :
8- name : Build wheels on ubuntu-20.04
9- runs-on : ubuntu-20.04
10- # strategy:
11- # matrix:
12- # os: [ubuntu-20.04, windows-2019, macos -10.15]
7+ name : Build wheels on ${{ matrix.os }}
8+ runs-on : ${{ matrix.os }}
9+ strategy :
10+ matrix :
11+ os : [ubuntu-20.04, macOS -10.15]
1312
1413 steps :
15- # - run: |
16- # sudo apt install graphviz
17- # wget http://www.openfst.org/twiki/pub/FST/FstDownload/openfst-1.8.1.tar.gz
18- # tar -xzvf openfst-1.8.1.tar.gz
19- # cd openfst-1.8.1/
20- # ./configure --enable-far=true
21- # make -j4
22- # sudo make install
23- # echo "export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib" >> ~/.bashrc
24- # source ~/.bashrc
25-
2614 - uses : actions/checkout@v2
2715
16+ # Used to host cibuildwheel
17+ - uses : actions/setup-python@v2
18+
19+ - name : Install cibuildwheel
20+ run : python -m pip install cibuildwheel==2.0.0a2
21+
2822 - name : Build wheels
29- uses : pypa/ cibuildwheel@v1.11.1.post1
23+ run : python -m cibuildwheel --output-dir wheelhouse
3024 # to supply options, put them in 'env', like:
3125 # env:
3226 # CIBW_SOME_OPTION: value
You can’t perform that action at this time.
0 commit comments