C.Lee Taylor

Results 8 comments of C.Lee Taylor

Based on @bra1n post, but staying with ```Tauri v1```, kept our step a little cleaner and easier to read, I think: ```yaml - name: Azure code-signing setup (windows only) if:...

Thanks for the reply @Emilgardis. I had tried quite a few option and I might not have listed trying this: ``` [target.aarch64-unknown-linux-gnu] image = "ubuntu:18.04" pre-build = "./scripts/cross_compile_hack.sh" [target.aarch64-unknown-linux-gnu.env] passthrough...

Thanks again @Emilgardis , can we not use the env ```CROSS_CONTAINER_OPTS``` to force docker to use a platform? That is something I saw suggested in an issue while looking through...

What my original expectation was that the docker would be running with local CPU arch, unless overridden or forced, might that be better user expectation?

That is the issue where I got the idea to try and force the docker platform, when I was able to debug that the arm64 was defaulting to using the...

I missed your suggestion on how to possible target the platform, let me test and report back. Thanks @Emilgardis for all the support.

Thanks @Emilgardis , I was able to come right. I can cross-compile our project on both x86_64 and aarch64 OSX computers to Linux x86_64 and aarch64. I am not sure...

Adding some info and possible see which way this goes ``` [target.aarch64-unknown-linux-gnu] image = "ubuntu:18.04" # Need to use native aarch64 on Apple silicon #image.name = "ubuntu:18.04" #image.toolchain = ["linux/arm64=aarch64-unknown-linux-gnu"]...