Skip to content

Commit a376efa

Browse files
committed
Merge branch 'main' into release/0.51
2 parents c2b89db + 046227c commit a376efa

File tree

1 file changed

+47
-47
lines changed

1 file changed

+47
-47
lines changed

.github/workflows/testing-and-deployment.yml

Lines changed: 47 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -200,56 +200,56 @@ jobs:
200200
path: dist/
201201
retention-days: 7
202202

203-
mac_build:
204-
runs-on: macos-latest
205-
name: Mac OS Unit Testing
206-
strategy:
207-
matrix:
208-
python-version: ['3.8']
209-
210-
steps:
211-
- uses: actions/checkout@v2
212-
213-
- name: Set up Python ${{ matrix.python-version }}
214-
uses: actions/setup-python@v1
215-
with:
216-
python-version: ${{ matrix.python-version }}
217-
218-
- name: Build wheels
219-
uses: joerick/[email protected]
220-
env:
221-
CIBW_BEFORE_BUILD: pip install -r requirements_build.txt
222-
CIBW_BUILD: cp38-macosx_x86_64
223-
224-
- name: Build wheels
225-
if: startsWith(github.event.ref, 'refs/tags')
226-
uses: joerick/[email protected]
227-
env:
228-
CIBW_BEFORE_BUILD: pip install -r requirements_build.txt
229-
CIBW_SKIP: pp* cp38-macosx_x86_64
230-
231-
- name: Show files
232-
run: ls -lh wheelhouse
233-
shell: bash
234-
235-
- name: Upload wheels
236-
uses: actions/upload-artifact@v2
237-
with:
238-
path: wheelhouse/*.whl
239-
240-
- name: Install wheel
241-
run: |
242-
pip install wheelhouse/*38*
243-
244-
- name: Test
245-
run: |
246-
pip install -r requirements_test.txt
247-
cd tests
248-
pytest -v
203+
# mac_build:
204+
# runs-on: macos-latest
205+
# name: Mac OS Unit Testing
206+
# strategy:
207+
# matrix:
208+
# python-version: ['3.8']
209+
210+
# steps:
211+
# - uses: actions/checkout@v2
212+
213+
# - name: Set up Python ${{ matrix.python-version }}
214+
# uses: actions/setup-python@v1
215+
# with:
216+
# python-version: ${{ matrix.python-version }}
217+
218+
# - name: Build wheels
219+
# uses: joerick/[email protected]
220+
# env:
221+
# CIBW_BEFORE_BUILD: pip install -r requirements_build.txt
222+
# CIBW_BUILD: cp38-macosx_x86_64
223+
224+
# - name: Build wheels
225+
# if: startsWith(github.event.ref, 'refs/tags')
226+
# uses: joerick/[email protected]
227+
# env:
228+
# CIBW_BEFORE_BUILD: pip install -r requirements_build.txt
229+
# CIBW_SKIP: pp* cp38-macosx_x86_64
230+
231+
# - name: Show files
232+
# run: ls -lh wheelhouse
233+
# shell: bash
234+
235+
# - name: Upload wheels
236+
# uses: actions/upload-artifact@v2
237+
# with:
238+
# path: wheelhouse/*.whl
239+
240+
# - name: Install wheel
241+
# run: |
242+
# pip install wheelhouse/*38*
243+
244+
# - name: Test
245+
# run: |
246+
# pip install -r requirements_test.txt
247+
# cd tests
248+
# pytest -v
249249

250250
Release:
251251
if: github.event_name == 'push' && contains(github.ref, 'refs/tags')
252-
needs: [check_style, doc_build, build, mac_build]
252+
needs: [check_style, doc_build, build] # , mac_build
253253
runs-on: ubuntu-latest
254254
steps:
255255
- name: Set up Python

0 commit comments

Comments
 (0)