Skip to content

Commit

Permalink
reset old yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
giampaolo committed May 17, 2020
1 parent 25b0636 commit 81028c2
Showing 1 changed file with 50 additions and 49 deletions.
99 changes: 50 additions & 49 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
@@ -1,76 +1,77 @@
name: Build wheels
name: Build wheel

on: [push, pull_request]

jobs:
build_wheels:
name: Build wheel on ${{ matrix.os }}
wheel_without_test:
name: build wheel for ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-18.04, windows-latest, macos-latest]
os: [windows-latest, macos-latest, ubuntu-latest]
env:
CIBW_SKIP: "pp27-*win* cp27-*manylinux* pp-*manylinux*"
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
CIBW_MANYLINUX_I686_IMAGE: manylinux2014
steps:
- uses: actions/checkout@v1

- uses: actions/setup-python@v1
name: Install Python
name: Install Python 3.7
with:
python-version: '3.7'

- name: Install cibuildwheel
run: |
python -m pip install cibuildwheel==1.4.1
- name: Install Visual C++ for Python 2.7
if: startsWith(matrix.os, 'windows')
run: |
choco install vcpython27 -f -y
- name: Build wheel
run: |
python -m cibuildwheel --output-dir wheelhouse
- name: "install cibuildwheel"
run: pip install cibuildwheel==1.4.1

- name: build wheel
run: cibuildwheel .

- uses: actions/upload-artifact@v1
- name: Upload wheels
uses: actions/upload-artifact@v1
with:
name: wheels
path: ./wheelhouse
name: wheels2
path: wheelhouse

wheel:
name: build wheel for ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
env:
CIBW_SKIP: "pp27-*win* *27* cp27-*manylinux* pp-*manylinux*"
CIBW_TEST_COMMAND: python -Wa {project}/psutil/tests/runner.py
CIBW_TEST_COMMAND_MACOS: LC_ALL='en_US.utf8' python -Wa {project}/psutil/tests/runner.py
CIBW_TEST_EXTRAS: test
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
CIBW_MANYLINUX_I686_IMAGE: manylinux2014
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
name: Install Python 3.7
with:
python-version: '3.7'

# wheel:
# name: build wheel for ${{ matrix.os }}
# runs-on: ${{ matrix.os }}
# strategy:
# fail-fast: false
# matrix:
# os: [windows-latest, macos-latest, ubuntu-latest]
# env:
# CIBW_SKIP: "pp27-*win* *27* cp27-*manylinux* pp-*manylinux*"
# CIBW_TEST_COMMAND: python -Wa {project}/psutil/tests/runner.py
# CIBW_TEST_COMMAND_MACOS: LC_ALL='en_US.utf8' python -Wa {project}/psutil/tests/runner.py
# CIBW_TEST_EXTRAS: test
# CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
# CIBW_MANYLINUX_I686_IMAGE: manylinux2014
# steps:
# - uses: actions/checkout@v1
# - uses: actions/setup-python@v1
# name: Install Python 3.7
# with:
# python-version: '3.7'
# - name: Install Visual C++ for Python 2.7
# if: startsWith(matrix.os, 'windows')
# run: |
# choco install vcpython27 -f -y
- name: Install Visual C++ for Python 2.7
if: startsWith(matrix.os, 'windows')
run: |
choco install vcpython27 -f -y
# - name: "install cibuildwheel"
# run: pip install cibuildwheel==1.4.1
- name: "install cibuildwheel"
run: pip install cibuildwheel==1.4.1

# - name: build wheel
# run: cibuildwheel .
- name: build wheel
run: cibuildwheel .

# - name: Upload wheels
# uses: actions/upload-artifact@v1
# with:
# name: wheels
# path: wheelhouse
- name: Upload wheels
uses: actions/upload-artifact@v1
with:
name: wheels
path: wheelhouse

0 comments on commit 81028c2

Please sign in to comment.