ZenVoich / mops

Package manager for the Motoko programming language
https://mops.one
MIT License
36 stars 3 forks source link

Issue testing new stable regions in github workflow #176

Closed tomijaga closed 9 months ago

tomijaga commented 9 months ago

Hey @ZenVoich, I ran into this issue while running a test with new stable regions using mops test. It works fine when I run the test locally but fails when it's run in the GitHub actions. Do you have any insight as to why this is happening?

ZenVoich commented 9 months ago

Hi, @tomijaga

moc does not yet support wasmtime v15 https://github.com/dfinity/motoko/issues/4292

If you replace wasmtime installation command in CI with this, it should work

bash -ci "$(curl -fsSL https://wasmtime.dev/install.sh)" -- --version v13.0.0
tomijaga commented 9 months ago

I've updated the install command and it works as expected. Thanks for the quick response as always!