-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dependabot/pip/pluggy-1.4.0
- Loading branch information
Showing
2 changed files
with
46 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ jobs: | |
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} | ||
path: ./wheelhouse/*.whl | ||
path: wheelhouse/*.whl | ||
|
||
build-n-publish-pypi: | ||
name: Build and Publish To PyPi | ||
|
@@ -45,12 +45,33 @@ jobs: | |
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Set up dependencies | ||
uses: carlkidcrypto/[email protected] | ||
with: | ||
linux: sudo apt-get update; | ||
sudo apt-get install -y libsnmp-dev libperl-dev; | ||
|
||
- name: Install pypa/build | ||
run: >- | ||
python -m | ||
pip install | ||
build | ||
--user | ||
- name: Build a source tarball | ||
run: >- | ||
python -m | ||
build | ||
--sdist | ||
--outdir dist/ | ||
. | ||
- name: Download Wheels | ||
uses: actions/download-artifact@v4 | ||
with: | ||
pattern: cibw-wheels-* | ||
merge-multiple: false | ||
merge-multiple: true | ||
path: dist/ | ||
|
||
- name: Publish distribution 📦 to Test PyPI | ||
|
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 |
---|---|---|
|
@@ -32,7 +32,7 @@ jobs: | |
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} | ||
path: ./wheelhouse/*.whl | ||
path: wheelhouse/*.whl | ||
|
||
build-n-publish-test-pypi: | ||
name: Build and Publish To Test PyPi | ||
|
@@ -45,12 +45,33 @@ jobs: | |
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Set up dependencies | ||
uses: carlkidcrypto/[email protected] | ||
with: | ||
linux: sudo apt-get update; | ||
sudo apt-get install -y libsnmp-dev libperl-dev; | ||
|
||
- name: Install pypa/build | ||
run: >- | ||
python -m | ||
pip install | ||
build | ||
--user | ||
- name: Build a source tarball | ||
run: >- | ||
python -m | ||
build | ||
--sdist | ||
--outdir dist/ | ||
. | ||
- name: Download Wheels | ||
uses: actions/download-artifact@v4 | ||
with: | ||
pattern: cibw-wheels-* | ||
merge-multiple: false | ||
merge-multiple: true | ||
path: dist/ | ||
|
||
- name: Publish distribution 📦 to Test PyPI | ||
|