Skip to content

Commit 7258272

Browse files
committed
Try better pnpm path
1 parent 78b1eb4 commit 7258272

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ jobs:
3232
run: cargo clippy -- -W clippy::all
3333
if: matrix.rust == 'stable'
3434
env:
35-
RUST_BACKTRACE: 1
36-
CARGO_PROFILE_DEV_BUILD_OVERRIDE_DEBUG: true
35+
RUST_BACKTRACE: full
3736
- name: Build and test
3837
run: cargo test
3938
env:
4039
RUST_MIN_STACK: 8388608
40+
RUST_BACKTRACE: full
4141

4242
minimal-versions:
4343
name: minimal versions check
@@ -54,8 +54,7 @@ jobs:
5454
run: rm Cargo.lock
5555
- run: cargo build -Z minimal-versions
5656
env:
57-
RUST_BACKTRACE: 1
58-
CARGO_PROFILE_DEV_BUILD_OVERRIDE_DEBUG: true
57+
RUST_BACKTRACE: full
5958

6059
web:
6160
name: web build

build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ struct Ast {
253253

254254
fn make_peg() -> Result<(), Error> {
255255
if !Path::new("node_modules/.bin/peggy").exists() {
256-
Command::new("pnpm")
256+
Command::new("./pnpm")
257257
.args(["install"])
258258
.output()
259259
.context("pnpm install")?;

0 commit comments

Comments
 (0)