Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude/skills/backport/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ git diff --name-only | grep -v '^yarn-project/' || true

If changes exist outside yarn-project, run bootstrap from the repo root:
```bash
BOOTSTRAP_TO=yarn-project ./bootstrap.sh
./bootstrap.sh build yarn-project
```

Fix any build errors that arise from the backport adaptation.
Expand Down
2 changes: 1 addition & 1 deletion bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,7 @@ case "$cmd" in
"ci-docs")
export CI=1
export USE_TEST_CACHE=1
BOOTSTRAP_TO=yarn-project ./bootstrap.sh
./bootstrap.sh build yarn-project
docs/bootstrap.sh ci
;;
"ci-barretenberg-debug")
Expand Down
2 changes: 1 addition & 1 deletion container-builds/avm-fuzzing-container/src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN git clone https://github.com/AztecProtocol/aztec-packages.git --depth 1 --br
WORKDIR /root/aztec-packages

# Run bootstrap up to yarn-project (release-image needs docker which isn't available)
RUN BOOTSTRAP_TO=yarn-project ./bootstrap.sh
RUN ./bootstrap.sh build yarn-project

# Build the tx fuzzer
WORKDIR /root/aztec-packages/barretenberg/cpp
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/.claude/skills/fix-pr/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ git diff origin/<base-branch>...HEAD --name-only | grep -v '^yarn-project/'

If yes, run bootstrap:
```bash
(cd $(git rev-parse --show-toplevel) && BOOTSTRAP_TO=yarn-project ./bootstrap.sh)
(cd $(git rev-parse --show-toplevel) && ./bootstrap.sh build yarn-project)
```

### Phase 4: Fix Based on Failure Type
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/.claude/skills/rebase-pr/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ git diff origin/<base-branch>...HEAD --name-only | grep -v '^yarn-project/'

If yes, run bootstrap from repo root:
```bash
(cd $(git rev-parse --show-toplevel) && BOOTSTRAP_TO=yarn-project ./bootstrap.sh)
(cd $(git rev-parse --show-toplevel) && ./bootstrap.sh build yarn-project)
```

### Step 5: Verify Build
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Git commands work from any subdirectory of a repo—there is no need to `cd` to
- Rebasing on a branch that has changes outside `yarn-project`

```bash
(cd $(git rev-parse --show-toplevel) && BOOTSTRAP_TO=yarn-project ./bootstrap.sh)
(cd $(git rev-parse --show-toplevel) && ./bootstrap.sh build yarn-project)
```

Bootstrap takes several minutes to run. Be patient.
Expand Down
Loading