Skip to content

Commit

Permalink
cibuildwheel
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed Nov 13, 2023
1 parent 62efaa3 commit 3bec55e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
14 changes: 4 additions & 10 deletions .github/workflows/wheels-linux-ci.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
name: Build Linux wheels CI

on:
workflow_call:
inputs:
artifacts-name:
required: true
type: string

env:
CONFIG_PATH: "wheels/config.sh"
REPO_DIR: "."
Expand Down Expand Up @@ -35,12 +28,13 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install cibuildwheel
run: python3 -m pip install cibuildwheel
- name: Build Wheel
run: .github/workflows/wheels-build.sh
run: python3 -m cibuildwheel --output-dir wheelhouse
- uses: actions/upload-artifact@v3
with:
name: ${{ inputs.artifacts-name }}
path: wheelhouse/*.whl
path: ./wheelhouse/*.whl
# Uncomment to get SSH access for testing
# - name: Setup tmate session
# if: failure()
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,3 @@ jobs:

linux-ci:
uses: ./.github/workflows/wheels-linux-ci.yml
with:
artifacts-name: "wheels"

0 comments on commit 3bec55e

Please sign in to comment.