As described in #2005, the Windows build is failing. This is reproducible with a simple cargo new helloworld on Windows with libsql 0.9.2 added as a dependency.
The relevant workflow is here.
I suspect the reason this is not caught is because PowerShell, the default shell for the windows-latest runner, may be aliasing cp to Copy-Item. It also might be because cp is added to the path from Git Bash or MSYS2. So build.rs succeeds in GitHub Actions, but it won't work on a typical Windows user's system since there will be no cp command.
#2005, #1657, #1969 related
As described in #2005, the Windows build is failing. This is reproducible with a simple
cargo new helloworldon Windows with libsql 0.9.2 added as a dependency.The relevant workflow is here.
I suspect the reason this is not caught is because PowerShell, the default shell for the
windows-latestrunner, may be aliasingcptoCopy-Item. It also might be becausecpis added to the path from Git Bash or MSYS2. So build.rs succeeds in GitHub Actions, but it won't work on a typical Windows user's system since there will be nocpcommand.#2005, #1657, #1969 related