Skip to content

Commit 4763dc2

Browse files
authored
include all OSs (#3)
* include all OSs * include all OSs * update * all my homies hate dev on windows
1 parent d055972 commit 4763dc2

File tree

1 file changed

+13
-19
lines changed

1 file changed

+13
-19
lines changed

.github/workflows/build_wheels.yml

Lines changed: 13 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,26 @@
11
name: Build
22

3-
on: [push, pull_request]
4-
3+
on: [push]
54

65
jobs:
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

0 commit comments

Comments
 (0)