Skip to content

Commit

Permalink
Fix arm64 appimage build
Browse files Browse the repository at this point in the history
  • Loading branch information
laggykiller committed Jul 13, 2024
1 parent 3e3373b commit 62b36e4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion AppImageBuilder-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ script:
- mkdir wheel
- pip download --python-version=312 --abi=cp312 --platform manylinux2014_aarch64 --platform manylinux_2_31_aarch64 --only-binary=':all:' -d wheel -r requirements.txt
- pip download --python-version=312 --abi=cp312 --platform manylinux2014_aarch64 --platform manylinux_2_31_aarch64 --only-binary=':all:' -d wheel certifi opencv-python
- find ./wheel/*.whl -exec bash -c 'mv $0 ${0/-(cp|py)*.whl/-py3-none-any.whl}' {} \;
- find ./wheel/*.whl -exec bash -c 'mv $0 ${0/-py*.whl/-py3-none-any.whl}' {} \;
- find ./wheel/*.whl -exec bash -c 'mv $0 ${0/-cp*.whl/-py3-none-any.whl}' {} \;
- pip install --ignore-installed --prefix=/usr --root=AppDir --no-deps ./wheel/*

AppDir:
Expand Down

0 comments on commit 62b36e4

Please sign in to comment.