Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
3code depends on bash. On Windows, the installer drops a private MSYS2 into
`%LOCALAPPDATA%\3code\msys64` so 3code owns its bash + unix toolset
deterministically (no system-root probing, no PATH fallback, no WSL-launcher
risk). `resolveBash` looks at the bundle, then a config `bash_path` override,
then hard-fails at startup.
Source (compiles out on POSIX via `when defined(windows)`):
Installer (`3code.capocasa.dev`, separate): one command for fresh install
`/releases/latest/download/` stable URL is broken for dated releases,
404 with https://github.com/msys2/msys2-installer/releases/latest/download/msys2-base-x86_64-latest.sfx.exe which used to work msys2/msys2-installer#118), extracts into the app dir. Re-run: `pacman -Syu`.
CI: adds `windows.yml` (fast Windows-only build+publish, mirrors `osx.yml`).
This PR triggers the full `release.yml` matrix via `pull_request`, including the
windows-latest leg.
Cross-compile of `streamexec.nim` + `test_streamexec.nim` passes under
`--os:windows`. Linux build + tests green.