Update build.yml

This commit is contained in:
iFA 2021-08-26 11:08:45 +02:00 committed by GitHub
parent 12b56ded32
commit bec684f0b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,91 +2,65 @@
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: build name: build
on: on:
push: # push:
branches: # branches:
- 'release/**' # - 'release/**'
release: release:
types: types:
- created - created
jobs: jobs:
wheel: # wheel:
# runs-on: ${{ matrix.os }}
runs-on: ${{ matrix.os }} # strategy:
# fail-fast: false
strategy: # matrix:
fail-fast: false # include:
# # MacOS
matrix: # - python: '3.6'
include: # os: macos-latest
# MacOS # - python: '3.7'
- python: '3.6' # os: macos-latest
os: macos-latest # - python: '3.8'
- python: '3.7' # os: macos-latest
os: macos-latest # - python: '3.9'
- python: '3.8' # os: macos-latest
os: macos-latest # steps:
- python: '3.9' # - uses: actions/checkout@v2
os: macos-latest # with:
# Windows # submodules: recursive
# - python: '3.6' # - name: Cache .a files
# os: windows-latest # uses: actions/cache@v2
#- python: '3.7' # with:
# os: windows-latest # key: ${{ runner.os }}
#- python: '3.8' # path: |
# os: windows-latest # src/rocksdb/libsnappy.a
#- python: '3.9' # src/rocksdb/liblz4.a
# os: windows-latest # src/rocksdb/libbz2.a
# src/rocksdb/libzstd.a
steps: # src/rocksdb/libz.a
- uses: actions/checkout@v2 # src/rocksdb/librocksdb.a
with: # - name: Setup python${{ matrix.python }}
submodules: recursive # uses: actions/setup-python@v2
# with:
- name: Cache .a files # python-version: "${{ matrix.python }}"
uses: actions/cache@v2 # - name: Make static library files
with: # run: make
key: ${{ runner.os }} # - name: Install requires
path: | # run: python -m pip install cython twine wheel
src/rocksdb/libsnappy.a # - name: Build wheel for python "${{ matrix.python }}"
src/rocksdb/liblz4.a # run: python setup.py bdist_wheel
src/rocksdb/libbz2.a # - name: Publishing to pypi
src/rocksdb/libzstd.a # run: twine upload --skip-existing --disable-progress-bar dist/*.whl
src/rocksdb/libz.a # env:
src/rocksdb/librocksdb.a # TWINE_USERNAME: __token__
# TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
- name: Setup python${{ matrix.python }}
uses: actions/setup-python@v2
with:
python-version: "${{ matrix.python }}"
- name: Make static library files
run: make
- name: Install requires
run: python -m pip install cython twine wheel
- name: Build wheel for python "${{ matrix.python }}"
run: python setup.py bdist_wheel
- name: Publishing to pypi
run: twine upload --skip-existing --disable-progress-bar dist/*.whl
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
linux-wheels: linux-wheels:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with: with:
submodules: recursive submodules: recursive
- name: Cache .a files - name: Cache .a files
uses: actions/cache@v2 uses: actions/cache@v2
with: with:
@ -98,30 +72,24 @@ jobs:
src/rocksdb/libzstd.a src/rocksdb/libzstd.a
src/rocksdb/libz.a src/rocksdb/libz.a
src/rocksdb/librocksdb.a src/rocksdb/librocksdb.a
- name: Make static library files - name: Make static library files
uses: docker://quay.io/pypa/manylinux2014_x86_64 uses: docker://quay.io/pypa/manylinux2014_x86_64
with: with:
args: /usr/bin/make args: /usr/bin/make
- name: Install requires - name: Install requires
run: python -m pip install cython twine wheel run: python -m pip install cython twine wheel
- name: Building manylinux2014 wheels - name: Building manylinux2014 wheels
uses: docker://quay.io/pypa/manylinux2014_x86_64 uses: docker://quay.io/pypa/manylinux2014_x86_64
with: with:
args: /bin/bash scripts/make-wheels.sh args: /bin/bash scripts/make-wheels.sh
- name: Setup python${{ matrix.python }} - name: Setup python${{ matrix.python }}
uses: actions/setup-python@v2 uses: actions/setup-python@v2
with: with:
python-version: "3.9" python-version: "3.9"
# - name: Install requires
- name: Install requires # run: python -m pip install twine
run: python -m pip install twine # - name: Publishing to pypi
# run: twine upload --skip-existing --disable-progress-bar dist/*.whl
- name: Publishing to pypi # env:
run: twine upload --skip-existing --disable-progress-bar dist/*.whl # TWINE_USERNAME: __token__
env: # TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}