From a4478d5c6eed5074f05c455c9f552b73c9bbc823 Mon Sep 17 00:00:00 2001 From: Marek Wydmuch Date: Sun, 4 Sep 2022 01:22:15 +0200 Subject: [PATCH] Update workflows --- .github/workflows/cpp-build.yml | 2 +- .github/workflows/macos-wheels.yml | 3 ++- .github/workflows/manylinux-wheels.yml | 3 ++- .github/workflows/python-build.yml | 2 +- .github/workflows/python-flake8.yml | 3 ++- .github/workflows/windows-wheels.yml | 3 ++- 6 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cpp-build.yml b/.github/workflows/cpp-build.yml index d4b185b..6c9dceb 100644 --- a/.github/workflows/cpp-build.yml +++ b/.github/workflows/cpp-build.yml @@ -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: diff --git a/.github/workflows/macos-wheels.yml b/.github/workflows/macos-wheels.yml index 77f8905..3277bc5 100644 --- a/.github/workflows/macos-wheels.yml +++ b/.github/workflows/macos-wheels.yml @@ -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: diff --git a/.github/workflows/manylinux-wheels.yml b/.github/workflows/manylinux-wheels.yml index 3b3f9c4..f5df24e 100644 --- a/.github/workflows/manylinux-wheels.yml +++ b/.github/workflows/manylinux-wheels.yml @@ -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: diff --git a/.github/workflows/python-build.yml b/.github/workflows/python-build.yml index 0da53c6..72ce5b1 100644 --- a/.github/workflows/python-build.yml +++ b/.github/workflows/python-build.yml @@ -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: diff --git a/.github/workflows/python-flake8.yml b/.github/workflows/python-flake8.yml index 9ff2849..cba3b74 100644 --- a/.github/workflows/python-flake8.yml +++ b/.github/workflows/python-flake8.yml @@ -8,7 +8,8 @@ on: - 'setup.py' jobs: - deploy: + lint: + name: Lint Python code runs-on: ubuntu-latest steps: diff --git a/.github/workflows/windows-wheels.yml b/.github/workflows/windows-wheels.yml index 417dde2..6616efc 100644 --- a/.github/workflows/windows-wheels.yml +++ b/.github/workflows/windows-wheels.yml @@ -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: