-
Notifications
You must be signed in to change notification settings - Fork 110
Install wxPython and make the ELF executable #152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,8 +13,13 @@ jobs: | |
| - uses: actions/setup-python@v2 | ||
| - run: sudo apt-get install libsdl2-2.0-0 | ||
| - run: python -m pip install pyinstaller | ||
| - env: | ||
| URL: https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-18.04 | ||
| run: python -m pip install --find-links ${URL} wxPython | ||
| - run: python setup.py clean bundle | ||
| - run: chmod +x /home/runner/work/PythonTurtle/PythonTurtle/dist/PythonTurtle | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I took a look at the documentation. The permissions will be lost in any case. The only solution is to tar up the file instead. All in all, I'm not happy with the zipp'ed binary. It should be possible to download the binary directly. Also, the Upload-Artifact is probably the wrong Action. There should be a Create-Release action that does what we need, instead. Do you want to give that a shot? |
||
| - run: tar -cfvz PythonTurtle_for_Linux.tgz /home/runner/work/PythonTurtle/PythonTurtle/dist/PythonTurtle | ||
| - uses: actions/upload-artifact@v2 | ||
| with: | ||
| name: PythonTurtle for Linux | ||
| path: /home/runner/work/PythonTurtle/PythonTurtle/dist/PythonTurtle | ||
| path: PythonTurtle_for_Linux.tar | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nicely solved, congrats!