Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Денис Петров authored and nikteliy committed May 2, 2024
1 parent efc1eaa commit 978809f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/build_scripts/build_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ popd
mkdir -p snap7/lib/
cp /usr/lib/libsnap7.so snap7/lib/
${INPUT_PYTHON} -m pip install --upgrade pip wheel build auditwheel patchelf setuptools
${INPUT_PYTHON} -m build . --wheel -C="--plat-name=${INPUT_PLATFORM}"
${INPUT_PYTHON} -m build . --wheel -C="--build-option=--plat-name=${INPUT_PLATFORM}"

auditwheel repair dist/*.whl --plat ${INPUT_PLATFORM} -w ${INPUT_WHEELDIR}
10 changes: 5 additions & 5 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-{{ runner.os }}
path: wheelhouse/*/*.whl

windows-build:
Expand All @@ -44,14 +44,14 @@ jobs:
run: |
mkdir -p snap7/lib/
Copy-Item .\snap7-full-1.4.2\release\Windows\Win64\snap7.dll .\snap7\lib
python3 -m build . --wheel -C="--plat-name=win_amd64"
python3 -m build . --wheel -C="--build-option=--plat-name=win_amd64"
mkdir -p wheelhouse/${{ runner.os }}/
cp dist/*.whl wheelhouse/${{ runner.os }}/
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-{{ runner.os }}
path: wheelhouse/*/*.whl

osx-build:
Expand All @@ -78,15 +78,15 @@ jobs:
- name: Build wheel
run: |
python3 -m build . --wheel -C="--plat-name=macosx_10_9_universal2"
python3 -m build . --wheel -C="--build-option=--plat-name=macosx_10_9_universal2"
mkdir -p wheelhouse/${{ runner.os }}/
cp dist/*.whl wheelhouse/${{ runner.os }}/
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-{{ runner.os }}
path: wheelhouse/*/*.whl


Expand Down

0 comments on commit 978809f

Please sign in to comment.