Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
mwydmuch committed Sep 3, 2022
1 parent f713ed7 commit a4478d5
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cpp-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
build:
strategy:
matrix:
#os: [ ubuntu-20.04, ubuntu-18.04, macos-11.0, macos-10.15, windows-latest ]
os: [ ubuntu-latest, macos-latest, windows-latest ]

name: Build C++ core on ${{ matrix.os }}
runs-on: ${{ matrix.os }}

steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/macos-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@ on:
- 'setup.py'

jobs:
deploy:
build_wheels:
strategy:
matrix:
os: [macos-10.15, macos-11, macos-12]
python-version: [ '3.7', '3.8', '3.9', '3.10' ]

name: Build macOS wheel on ${{ matrix.os }} for Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}

steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/manylinux-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ on:
- 'setup.py'

jobs:
deploy:
build_wheels:
strategy:
matrix:
python-version: [ 'cp37-cp37m', 'cp38-cp38', 'cp39-cp39', 'cp310-cp310' ]

name: Build manylinux wheel for Python ${{ matrix.python-version }}
runs-on: ubuntu-latest

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
build:
strategy:
matrix:
#os: [ ubuntu-20.04, ubuntu-18.04, macos-11.0, macos-10.15, windows-latest]
os: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ '3.7', '3.8', '3.9', '3.10' ]

name: Build Pyhton binding on ${{ matrix.os }} for Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}

steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/python-flake8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:
- 'setup.py'

jobs:
deploy:
lint:
name: Lint Python code
runs-on: ubuntu-latest

steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/windows-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ on:
- 'setup.py'

jobs:
deploy:
build_wheels:
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10' ]

name: Build Windows wheel on ${{ matrix.os }} for Python ${{ matrix.python-version }}
runs-on: windows-latest

steps:
Expand Down

0 comments on commit a4478d5

Please sign in to comment.