-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Experiment with
hynek/build-and-inspect-python-package
- Loading branch information
Showing
2 changed files
with
36 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,7 +54,7 @@ jobs: | |
name: Create Python Package | ||
runs-on: ${{ inputs.runner-os }} | ||
outputs: | ||
artifact-name: packages-${{ steps.package.outputs.name }} | ||
artifact-name: "Packages-${{ steps.package.outputs.name }}${{ inputs.build-subdirectory && format('-{0}', inputs.build-subdirectory) || '' }}" | ||
steps: | ||
|
||
- name: Determine Package Name | ||
|
@@ -67,32 +67,38 @@ jobs: | |
repository: ${{ inputs.repository }} | ||
fetch-depth: 0 # Fetch all refs so setuptools_scm can generate the correct version number | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v5.1.0 | ||
- name: Build & Upload Package | ||
uses: hynek/build-and-inspect-python[email protected].0 | ||
with: | ||
python-version: ${{ inputs.python-version }} | ||
cache: pip | ||
cache-dependency-path: | | ||
**/setup.cfg | ||
**/pyproject.toml | ||
path: ${{ inputs.build-subdirectory || '.' }} | ||
upload-name-suffix: "-${{ steps.package.outputs.name }}${{ inputs.build-subdirectory && format('-{0}', inputs.build-subdirectory) || '' }}" | ||
|
||
- name: Update pip | ||
run: python -m pip install -U pip | ||
# - name: Setup Python | ||
# uses: actions/[email protected] | ||
# with: | ||
# python-version: ${{ inputs.python-version }} | ||
# cache: pip | ||
# cache-dependency-path: | | ||
# **/setup.cfg | ||
# **/pyproject.toml | ||
|
||
- name: Install tox | ||
run: python -m pip install ${{ inputs.tox-source }} | ||
# - name: Update pip | ||
# run: python -m pip install -U pip | ||
|
||
- name: Build Wheels | ||
if: inputs.build-subdirectory == '' | ||
run: tox -e package${{ inputs.tox-factors }} | ||
# - name: Install tox | ||
# run: python -m pip install ${{ inputs.tox-source }} | ||
|
||
- name: Build Wheels from Subdirectory | ||
if: inputs.build-subdirectory != '' | ||
run: tox -e package${{ inputs.tox-factors }} -- ${{ inputs.build-subdirectory }} | ||
# - name: Build Wheels | ||
# if: inputs.build-subdirectory == '' | ||
# run: tox -e package${{ inputs.tox-factors }} | ||
|
||
- name: Upload Package | ||
uses: actions/[email protected] | ||
with: | ||
name: packages-${{ steps.package.outputs.name }}${{ inputs.build-subdirectory && format('-{0}', inputs.build-subdirectory) || '' }} | ||
path: ${{ inputs.distribution-path }} | ||
if-no-files-found: error | ||
# - name: Build Wheels from Subdirectory | ||
# if: inputs.build-subdirectory != '' | ||
# run: tox -e package${{ inputs.tox-factors }} -- ${{ inputs.build-subdirectory }} | ||
|
||
# - name: Upload Package | ||
# uses: actions/[email protected] | ||
# with: | ||
# name: packages-${{ steps.package.outputs.name }}${{ inputs.build-subdirectory && format('-{0}', inputs.build-subdirectory) || '' }} | ||
# path: ${{ inputs.distribution-path }} | ||
# if-no-files-found: error |