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 e709e7e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 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}
15 changes: 9 additions & 6 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-{{ runner.os }}
path: wheelhouse/*/*.whl
merge-multiple: true

windows-build:
name: Build wheel for windows
Expand All @@ -44,15 +45,16 @@ 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
merge-multiple: true

osx-build:
name: Build wheel for osx
Expand All @@ -78,16 +80,17 @@ 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
merge-multiple: true


test-wheels-86_64:
Expand Down Expand Up @@ -115,7 +118,7 @@ jobs:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: wheels
name: wheels-{{ runner.os }}
path: wheelhouse

- name: Install python-snap7
Expand Down

0 comments on commit e709e7e

Please sign in to comment.