-
-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ubuntu support #5
Comments
Interesting... I don't think changing https://github.com/bscotch/igor-setup/blob/main/src/lib/igor-setup.ts#L182 is needed, because if you ended up specifying You workflow shows that you are still using |
@shichen85 yes, of course as I mentioned, I had to change that one line, so instead of |
I found the issue. In your workflow YML file: - name: use Igor Setup
uses: bscotch/igor-setup@v1
id: igor
with:
target-yyp: ${{ steps.find_yyp.outputs.yyp-path }}
access-key: ${{ secrets.ACCESS_KEY }}
module: linux It uses the singular We do not ship to Ubuntu so I will leave this issue open for PRs from the community. |
Attempting to utilise code from this thread: bscotch/igor-setup#5
Hi all, thought I'd document my experience attempting to utilise the code and discussions mentioned here to compile my project. Compiling anything GM on It then tripped on some notice about a location not existing (log here: 0_build.txt), I was able to get around this by adding the prerequisites for Ubuntu compiling, namely the Steam runtime, AppImage and LinuxDeploy. After a bit of trial and error, I was able to get AppImage-based and YYC compiles going! At the moment I only have access to my Steam Deck, which runs into some quirks with joystick support I need to look at separately, but it does run. FWIW, my work file is here - I'm a bit new to the whole Github Actions thing so totally open to critique and feedback. :) |
By changing:
to:
in https://github.com/bscotch/igor-setup/blob/main/src/lib/igor-setup.ts#L182
I was able to make a build for Ubuntu, with below nearly-basic config (notice
platform: linux
, also "find" part is same as for android):However, I'm not good enough to fully understand how those scripts works, and how to separate android/ubuntu builds.
I've checked it on runtime

2024.1100.0.658
:If someone with bigger knowledge would be able to adapt some better solution (so android/linux would be properly differetiated, and won't cause downloading both runtimes), that would be useful for others.
For now I'm at least sharing, that it's possible :)
The text was updated successfully, but these errors were encountered: