Hello,
My ios application needs golang version v1.15.x to build. Can I change pre-installed tool version on Stack. I use following stack.
Best regards,
Oyama
Hello,
My ios application needs golang version v1.15.x to build. Can I change pre-installed tool version on Stack. I use following stack.
Best regards,
Oyama
Yeah, you can.
Just like locally using commandline. Eg. homebrew on xcode stack.
Thank you for your help.
I added following script to my workflow.
brew uninstall --force go
brew install go@1.15
After that I executed the workflow then I got following error.
ERRO[12:00:48] Step (xcode-archive@3.2) failed: Failed to prepare the step for execution through the required toolkit (go), error: Failed to select an appropriate Go installation for compiling the Step: Found Go version is older than required. Please run 'bitrise setup' to check and install the required version
So you have a dependency version conflict.
Here are some of the possible solutions/workarounds:
Thank you for the solutions/workarounds. I will try to downgrade go-lang version to build.
By the way, my app was successfully built until 14 Jun, 2021 because osx-xcode-12.5.x stack used go 1.15.x.
Here is osx-xcode-12.5.x stack log on 14 Jun, 2021.
Here is osx-xcode-12.5.x stack log on Jul 5, 2021.
go version was changed from 1.15.x to 1.16.x.
I solved the problem as following.
@koral, thank you so much.
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.