nodegui / react-nodegui

Build performant, native and cross-platform desktop applications with native React + powerful CSS like styling.🚀
https://react.nodegui.org
MIT License
6.18k stars 171 forks source link

Error while downloading Qode v2.1.0: Not Found #343

Open waltersajtos opened 3 years ago

waltersajtos commented 3 years ago

Describe the bug I am trying to install Qode on Linux but it can't download the right release.

To Reproduce Steps to reproduce the behavior:

  1. Download starter project
  2. Run npm i
  3. Error while setting up Qode: Error: Error while downloading Qode v2.1.0:https://github.com/nodegui/qode/releases/download/v2.1.0/qode-linux-arm64-v2.1.0.tar.gz. Not Found

Expected behavior I'm expecting qode to be installed and run the application

Desktop (please complete the following information):

Additional context npm output: https://www.codepile.net/pile/pvRd83K2

momesana commented 3 years ago

The download link from your logs suggests you are building on an ARM platform: https://github.com/nodegui/qode/releases/download/v2.1.0/qode-linux-arm64-v2.1.0.tar.gz There is no bundle for that platform as can be seen here: https://github.com/nodegui/qode/releases/. The provided bundles cover
darwin-x64, inux-x64 and win32-x64 only.

waltersajtos commented 3 years ago

The download link from your logs suggests you are building on an ARM platform: https://github.com/nodegui/qode/releases/download/v2.1.0/qode-linux-arm64-v2.1.0.tar.gz There is no bundle for that platform as can be seen here: https://github.com/nodegui/qode/releases/. The provided bundles cover darwin-x64, inux-x64 and win32-x64 only.

Is there a possibility to add that? I'm kind of new in the linux scene so I really don't know how much work this is

a7ul commented 3 years ago

Right now qode is compiled using github actions

And github actions only support some intel chips for linux.

See the commit here: https://github.com/nodegui/qode/blob/602cb55099a7770f9869150c1b1925e9b99448c2/.github/workflows/linux.yml#L6

and the supported github actions environments here: https://github.com/actions/virtual-environments

waltersajtos commented 3 years ago

Right now qode is compiled using github actions

And github actions only support some intel chips for linux.

See the commit here: https://github.com/nodegui/qode/blob/602cb55099a7770f9869150c1b1925e9b99448c2/.github/workflows/linux.yml#L6

and the supported github actions environments here: https://github.com/actions/virtual-environments

Alright, that makes sense. Thanks! Is there an easy way I could compile this myself on an arm64 platform?