StoicDeveloper

Results 20 comments of StoicDeveloper

Build output including stack trace: ``` 602.7 Finished `dev` profile [unoptimized + debuginfo] target(s) in 10m 01s 603.4 Running `/target/debug/prisma generate` 603.4 Downloading https://prisma-photongo.s3-eu-west-1.amazonaws.com/prisma-cli-4.8.0-linux-x64.gz to /root/.cache/prisma/binaries/cli/4.8.0/prisma-cli-linux-x64 736.9 Downloading https://binaries.prisma.sh/all_commits/d6e67a83f971b175a593ccc12e15c4a757f93ffe/linux-musl/query-engine.gz to...

I had this same problem. The solution was indicated by the output which `pnpm install` was also generating for me: ``` ❯ pnpm install  WARN  2 deprecated subdependencies found: @esbuild-kit/[email protected],...

``` $ journalctl Aug 02 11:17:57 localhost kernel: Linux version 6.6.36-1.qubes.fc37.x86_64 (mockbuild@01d867aa44b046b59b72b56f0f81e904) (gcc (GCC) 12.3.1 20230508 (Red Hat 12.3.1-1), GN> Aug 02 11:17:57 localhost kernel: Command line: placeholder root=/dev/mapper/qubes_dom0-root ro...

If you think this is a good idea, I'd be happy to submit a PR

I understand. It was because both problems have something to do with the windowing system that I suspect they may have the same cause, and placed them in the same...

Running the command with `RUST_BACKTRACE=full` results in an even more cryptic error: ``` Compiling serde-value v0.7.0 Compiling dotenv v0.15.0 Compiling prisma-client-rust v0.6.11 (https://github.com/Brendonovich/prisma-client-rust?tag=0.6.11#3ac68d00) Compiling rspc-axum v0.1.1 Compiling prisma-client-rust-cli v0.6.11 (https://github.com/Brendonovich/prisma-client-rust?tag=0.6.11#3ac68d00)...

Rust version: ``` root@3e9690b90a23:/# rustc --version rustc 1.83.0-nightly (94885bc69 2024-09-01) ``` The build is occurring on a recent pull of the rust:slim-bullseye docker image.

The full steps to reproduce are: Dockerfile ``` FROM rust:slim-bullseye AS test-builder COPY ./src-server . RUN rustup default nightly # RUN RUST_BACKTRACE=full cargo prisma generate ENTRYPOINT ["/bin/bash"] ``` Shell: ```...

In case it helps rule something out, the same problem appear on stable rust: ``` Finished `dev` profile [unoptimized + debuginfo] target(s) in 22m 39s Running `target/debug/prisma generate` Environment variables...