Dilum Aluthge
Dilum Aluthge
If you're interested in registering your Julia packages in the [Julia General registry](https://github.com/JuliaRegistries/General), you might notice that the AutoMerge CI check has trouble parsing the license file. The easiest way...
If I understand correctly, [`./build-mosh.sh`](https://github.com/blinksh/build-mosh/blob/master/build-mosh.sh) requires `ncurses`. Specifically, `./build-mosh.sh` assumes that the `ncurses` headers are available at `/usr/include/ncurses.h`, `/usr/include/curses.h`, etc. However, this requirement is currently not documented in the [README.md](https://github.com/blinksh/build-mosh/blob/master/README.md).
Note: the base branch (target branch) of this PR is `kc/warn_using` (#42080), NOT `master`. --- This small change was originally part of #53428. However, it caused confusion during PR review....
In old Julia versions, `Pkg.test` sets the version numbers of all stdlibs to `0.0.0`. So, if we don't allow `0.0.0`, then `Pkg.test` will throw a resolver error. Example of this...
## Description On macOS, install Julia from the tarball (instead of installing Julia from the `.dmg`). ## Related Issue This should fix #198.
Replaces #935 (closes #935) Reference #738 --- This is based on #935. All credit goes to @PhilReinhold for providing the fix and @jayscook for opening the original PR (#935). This...
For example, see [this CI log](https://github.com/JuliaLang/PackageCompiler.jl/actions/runs/11395993344/job/31709098289). The error usually looks something like this: ``` Error During Test at D:\a\PackageCompiler.jl\PackageCompiler.jl\test\runtests.jl:96 Got exception outside of a @test SystemError (with C:\Users\RUNNER~1\AppData\Local\Temp\jl_kFRDyU\artifacts\fdff308295487f361ef6e8dc2d27f5abe8a6eee9\mingw64\libexec\gcc\x86_64-w64-mingw32\8.1.0): rmdir: Directory...
## MWE ```julia import PackageCompiler sysimage_stdlibs = ["Pkg"] base_sysimage = PackageCompiler.create_fresh_base_sysimage( sysimage_stdlibs; cpu_target = PackageCompiler.default_app_cpu_target(), sysimage_build_args = ``, ) ``` Expected behavior: no exception is thrown. Actual behavior: ``` ✔...