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:
include:
# MacOS
- python: '3.6'
os: macos-latest
- python: '3.7'
os: macos-latest
- python: '3.8'
os: macos-latest
- python: '3.9'
os: macos-latest
# Windows
# - python: '3.6' # - python: '3.6'
# os: windows-latest # os: macos-latest
# - python: '3.7' # - python: '3.7'
# os: windows-latest # os: macos-latest
# - python: '3.8' # - python: '3.8'
# os: windows-latest # os: macos-latest
# - python: '3.9' # - python: '3.9'
# os: windows-latest # os: macos-latest
# steps:
steps: # - uses: actions/checkout@v2
- uses: actions/checkout@v2 # with:
with: # submodules: recursive
submodules: recursive # - name: Cache .a files
# uses: actions/cache@v2
- name: Cache .a files # with:
uses: actions/cache@v2 # key: ${{ runner.os }}
with: # path: |
key: ${{ runner.os }} # src/rocksdb/libsnappy.a
path: | # src/rocksdb/liblz4.a
src/rocksdb/libsnappy.a # src/rocksdb/libbz2.a
src/rocksdb/liblz4.a # src/rocksdb/libzstd.a
src/rocksdb/libbz2.a # src/rocksdb/libz.a
src/rocksdb/libzstd.a # src/rocksdb/librocksdb.a
src/rocksdb/libz.a # - name: Setup python${{ matrix.python }}
src/rocksdb/librocksdb.a # uses: actions/setup-python@v2
# with:
- name: Setup python${{ matrix.python }} # python-version: "${{ matrix.python }}"
uses: actions/setup-python@v2 # - name: Make static library files
with: # run: make
python-version: "${{ matrix.python }}" # - name: Install requires
# run: python -m pip install cython twine wheel
- name: Make static library files # - name: Build wheel for python "${{ matrix.python }}"
run: make # run: python setup.py bdist_wheel
# - name: Publishing to pypi
- name: Install requires # run: twine upload --skip-existing --disable-progress-bar dist/*.whl
run: python -m pip install cython twine wheel # env:
# TWINE_USERNAME: __token__
- name: Build wheel for python "${{ matrix.python }}" # TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
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 }}