#Build and shipping tauri app with BitBucket

9 messages · Page 1 of 1 (latest)

dense marsh
#

Hi everyone, I have a question:
With BitBucket, can I do something similar to Github Action to build and ship a Tauri app? I couldn't find any documentation on how to do this with BitBucket. I would really appreciate your help.
Thank you.

slow crow
#

I don't think there's an issue - it's just undocumented and you have to build Tauri by hand - without the Tauri Github action.

jaunty topaz
#

99% of what the Tauri action does is handle creating a GitHub release. If you just run the basic dependencies setup commands and tauri build in your pipeline then you've successfully recreated what I think is most of what you want to accomplish. After that it's really just how you wanna distribute your bundles

icy island
#

One problem with bitbucket is that their iirc only have linux pipelines unless you host macos/windows runners yourself.
With you'll only be able to build your app for linux and cross compile it to windows (which can get a bit annoying if your project is complex enough). macOS won't be possible then.

#

Either way, if you come up with something we'd appreciate if you could help us getting it into our docs :)

jaunty topaz
#

Fun fact btw that's worth mentioning, GitLab has an option where you just abuse them for their CI/CD capabilities, and they offer mac windows and linux runners

#

So you can keep your code on BitBucket but use GitLab for CI/CD

#

Or ofc look into stuff like TravisCI

dense marsh
#

I really have issue when to try build cross platform with Bitbucket. I know in pipeline can use only one runner, so I don't know how to build in another platform 😦