-
Notifications
You must be signed in to change notification settings - Fork 39
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
Automatic creation of the bare bundle #16
base: main
Are you sure you want to change the base?
Conversation
did not work as I was thinking
GitHub workflow is interesting. |
I think it should be possible. I have tried to use the build all script but got an error. It looks like I can only build the windows bundle in Windows. But that's possible to an free for public repository. I think I'm able to also build the android version in that way. But I would put every bundle in it's own workflow. That's better for doing it in parallel... I think. |
Oh, right... btw actually no need windows... the windows-must is As you can see in docs I said I would write a guide to do android later. But in fact we can really do automation -- after the hacks. |
the pure bundle is working... Windows makes problems with
|
I see you're working on 🙃 build-common.zip No need to change the system. Bundling takes nothing from it. Also remove for i in $(find | grep -E '.*\.pyc'); do rm $i; done
for i in $(find | grep -E '__pycache__'); do rm -d $i; done |
I think it is not needed as every build is a fresh OS and a fresh copy of this repo |
somehow we have to get it inside of the docker cointainer |
@NaitLee you can ping me via matrix chat |
I had an idea how to automatically start the build process when creating a tag.
The zip created is hosted with a checksum right on Github on the tag.
I hope it helps you.