Skip to content

Commit a07c1ac

Browse files
atodorovcrobinso
authored andcommitted
Add CI job to install on Windows. Refs #134
will fail with: running install running build Didn't find rst2man or rst2man.py ERROR: Command errored out with exit status 1: ...
1 parent 8c62f14 commit a07c1ac

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,24 @@ jobs:
7272
./setup.py rpm
7373
7474
- run: mock --root epel-8-x86_64 *.src.rpm
75+
76+
# Build and install on Windows
77+
windows:
78+
runs-on: windows-latest
79+
strategy:
80+
matrix:
81+
python-version: [3.8]
82+
83+
steps:
84+
- uses: actions/checkout@v2
85+
86+
- name: Set up Python ${{ matrix.python-version }}
87+
uses: actions/setup-python@v2
88+
with:
89+
python-version: ${{ matrix.python-version }}
90+
91+
- name: Build tarball & install
92+
run: |
93+
python setup.py sdist
94+
95+
pip install --find-links dist python-bugzilla

0 commit comments

Comments
 (0)