P
Prisma•3mo ago
net-tech-

binaryTargets option seemingly not working with bun in CI

When using the setup-bun github action, I get this error with Prisma
PrismaClientInitializationError: Prisma Client could not locate the Query Engine for runtime "debian-openssl-3.0.x".

This happened because Prisma Client was generated for "debian-openssl-1.1.x", but the actual deployment required "debian-openssl-3.0.x".
Add "debian-openssl-3.0.x" to binaryTargets in the "schema.prisma" file and run prisma generate after saving it:

generator client {
provider = "prisma-client-js"
binaryTargets = ["native", "debian-openssl-3.0.x"]
}

The following locations have been searched:
/home/runner/work/kiai/kiai/node_modules/.prisma/client
/home/runner/work/kiai/kiai/node_modules/@prisma/client
/tmp/prisma-engines
/home/runner/work/kiai/kiai/packages/internal/prisma/schema
clientVersion: "6.1.0",
errorCode: undefined,

at new PrismaClientInitializationError (/home/runner/work/kiai/kiai/node_modules/@prisma/client/runtime/library.js:21:1370)
at <anonymous> (/home/runner/work/kiai/kiai/node_modules/@prisma/client/runtime/library.js:64:805)
PrismaClientInitializationError: Prisma Client could not locate the Query Engine for runtime "debian-openssl-3.0.x".

This happened because Prisma Client was generated for "debian-openssl-1.1.x", but the actual deployment required "debian-openssl-3.0.x".
Add "debian-openssl-3.0.x" to binaryTargets in the "schema.prisma" file and run prisma generate after saving it:

generator client {
provider = "prisma-client-js"
binaryTargets = ["native", "debian-openssl-3.0.x"]
}

The following locations have been searched:
/home/runner/work/kiai/kiai/node_modules/.prisma/client
/home/runner/work/kiai/kiai/node_modules/@prisma/client
/tmp/prisma-engines
/home/runner/work/kiai/kiai/packages/internal/prisma/schema
clientVersion: "6.1.0",
errorCode: undefined,

at new PrismaClientInitializationError (/home/runner/work/kiai/kiai/node_modules/@prisma/client/runtime/library.js:21:1370)
at <anonymous> (/home/runner/work/kiai/kiai/node_modules/@prisma/client/runtime/library.js:64:805)
I've already set the binaryTarget to ["native", "debian-openssl-3.0.x"] and it does not fix the issue. Bun Version: 1.20.0 Prisma Version: 6.1.0 CI Ubuntu version: ubuntu-latest Here's my CI:
name: CI

permissions: write-all

on:
push:
branches: ["main"]
pull_request:
types: [opened, synchronize]
merge_group:

jobs:
ci:
name: Check - (${{ matrix.cmds }})
timeout-minutes: 15
runs-on: ubuntu-latest
strategy:
matrix:
cmds: ["bun run build:web", "bun x @biomejs/biome ci .", "bun test"]
steps:
- uses: oven-sh/setup-bun@v2

- name: Check out code
uses: actions/checkout@v4
with:
submodules: true

- name: Cache dependencies
uses: actions/cache@v4
with:
path: |
~/.bun/install/cache
node_modules
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
restore-keys: |
${{ runner.os }}-bun-

- name: Install dependencies
run: bun install
shell: bash

- name: Run Check
run: ${{ matrix.cmds }}
env:
CI: 1
PRISMA_CLI_BINARY_TARGETS: "debian-openssl-3.0.x"
name: CI

permissions: write-all

on:
push:
branches: ["main"]
pull_request:
types: [opened, synchronize]
merge_group:

jobs:
ci:
name: Check - (${{ matrix.cmds }})
timeout-minutes: 15
runs-on: ubuntu-latest
strategy:
matrix:
cmds: ["bun run build:web", "bun x @biomejs/biome ci .", "bun test"]
steps:
- uses: oven-sh/setup-bun@v2

- name: Check out code
uses: actions/checkout@v4
with:
submodules: true

- name: Cache dependencies
uses: actions/cache@v4
with:
path: |
~/.bun/install/cache
node_modules
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
restore-keys: |
${{ runner.os }}-bun-

- name: Install dependencies
run: bun install
shell: bash

- name: Run Check
run: ${{ matrix.cmds }}
env:
CI: 1
PRISMA_CLI_BINARY_TARGETS: "debian-openssl-3.0.x"
No description
3 Replies
Prisma AI Help
Prisma AI Help•3mo ago
You're in no rush, so we'll let a dev step in. Enjoy your coffee, or drop into #ask-ai if you get antsy for a second opinion!
net-tech-
net-tech-OP•3mo ago
Adding an explicit prisma generate worked :Facepalm:
Nurul
Nurul•3mo ago
Ah, I am glad to hear that you were able to resolve this 💪

Did you find this page helpful?