Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mariadb 1.0.11 #34

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file removed .github/workflows/.gitkeep
Empty file.
53 changes: 53 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: mariadb 1.0.11

defaults:
run:
shell: bash

on: pull_request

jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-10.15]

steps:
- uses: actions/checkout@v2

# Used to host cibuildwheel
- uses: actions/setup-python@v2

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.1.2

- name: Fetch source distribution
run: |
curl https://files.pythonhosted.org/packages/37/0a/ce5724f852f2937c6955bcea09659aa2d85d487df1c9de6711344b71527d/mariadb-1.0.11.zip -o mariadb-1.0.11.zip
unzip mariadb-1.0.11.zip
mv mariadb-1.0.11/* .

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.7"
CIBW_BUILD: "cp*"
CIBW_BEFORE_ALL_MACOS: brew install mariadb

- name: Checksum
uses: Huy-Ngo/[email protected]
with:
glob: 'wheelhouse/*.whl'
- uses: actions/upload-artifact@v2
with:
path: wheelhouse/*.whl

- name: Release
uses: softprops/action-gh-release@v1
with:
name: 'Release: mariadb 1.0.11'
files: wheelhouse/*.whl
tag_name: mariadb-1.0.11