From 046227c3700afdae113dcbb0d84714a7560b4510 Mon Sep 17 00:00:00 2001 From: Alex Kaszynski Date: Wed, 12 Jan 2022 10:52:13 -0700 Subject: [PATCH] remove mac build (#93) --- .github/workflows/testing-and-deployment.yml | 94 ++++++++++---------- 1 file changed, 47 insertions(+), 47 deletions(-) diff --git a/.github/workflows/testing-and-deployment.yml b/.github/workflows/testing-and-deployment.yml index 02211b10..01c9ba36 100644 --- a/.github/workflows/testing-and-deployment.yml +++ b/.github/workflows/testing-and-deployment.yml @@ -200,56 +200,56 @@ jobs: path: dist/ retention-days: 7 - mac_build: - runs-on: macos-latest - name: Mac OS Unit Testing - strategy: - matrix: - python-version: ['3.8'] - - steps: - - uses: actions/checkout@v2 - - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 - with: - python-version: ${{ matrix.python-version }} - - - name: Build wheels - uses: joerick/cibuildwheel@v2.0.1 - env: - CIBW_BEFORE_BUILD: pip install -r requirements_build.txt - CIBW_BUILD: cp38-macosx_x86_64 - - - name: Build wheels - if: startsWith(github.event.ref, 'refs/tags') - uses: joerick/cibuildwheel@v2.0.1 - env: - CIBW_BEFORE_BUILD: pip install -r requirements_build.txt - CIBW_SKIP: pp* cp38-macosx_x86_64 - - - name: Show files - run: ls -lh wheelhouse - shell: bash - - - name: Upload wheels - uses: actions/upload-artifact@v2 - with: - path: wheelhouse/*.whl - - - name: Install wheel - run: | - pip install wheelhouse/*38* - - - name: Test - run: | - pip install -r requirements_test.txt - cd tests - pytest -v + # mac_build: + # runs-on: macos-latest + # name: Mac OS Unit Testing + # strategy: + # matrix: + # python-version: ['3.8'] + + # steps: + # - uses: actions/checkout@v2 + + # - name: Set up Python ${{ matrix.python-version }} + # uses: actions/setup-python@v1 + # with: + # python-version: ${{ matrix.python-version }} + + # - name: Build wheels + # uses: joerick/cibuildwheel@v2.0.1 + # env: + # CIBW_BEFORE_BUILD: pip install -r requirements_build.txt + # CIBW_BUILD: cp38-macosx_x86_64 + + # - name: Build wheels + # if: startsWith(github.event.ref, 'refs/tags') + # uses: joerick/cibuildwheel@v2.0.1 + # env: + # CIBW_BEFORE_BUILD: pip install -r requirements_build.txt + # CIBW_SKIP: pp* cp38-macosx_x86_64 + + # - name: Show files + # run: ls -lh wheelhouse + # shell: bash + + # - name: Upload wheels + # uses: actions/upload-artifact@v2 + # with: + # path: wheelhouse/*.whl + + # - name: Install wheel + # run: | + # pip install wheelhouse/*38* + + # - name: Test + # run: | + # pip install -r requirements_test.txt + # cd tests + # pytest -v Release: if: github.event_name == 'push' && contains(github.ref, 'refs/tags') - needs: [check_style, doc_build, build, mac_build] + needs: [check_style, doc_build, build] # , mac_build runs-on: ubuntu-latest steps: - name: Set up Python