Skip to content
This repository was archived by the owner on Sep 18, 2025. It is now read-only.

Commit 67ece5f

Browse files
committed
Update the devcontainer config
Signed-off-by: Quanyi Ma <eli@patch.sh>
1 parent 67d2606 commit 67ece5f

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.devcontainer/devcontainer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
}
1212
},
1313
"hostRequirements": {
14-
"cpus": 8,
15-
"memory": "32gb",
16-
"storage": "100gb"
14+
"cpus": 16,
15+
"memory": "64GB",
16+
"storage": "128GB"
1717
}
1818
}

.devcontainer/setup.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,16 @@ apt-get install -y \
2020

2121
## Install rustup and common components
2222
curl https://sh.rustup.rs -sSf | sh -s -- -y
23+
source $HOME/.cargo/env
2324
rustup install default
2425
rustup component add rustfmt
2526
rustup component add clippy
26-
source $HOME/.cargo/env
2727
cargo install cargo-expand
2828
cargo install cargo-edit
2929

30-
## Install Buck2 and Reindeer
30+
## Install Buck2
3131
wget https://github.com/facebook/buck2/releases/download/2025-02-01/buck2-x86_64-unknown-linux-musl.zst
3232
zstd -d /home/buck2-x86_64-unknown-linux-musl.zst
3333
mv /home/buck2-x86_64-unknown-linux-musl /home/buck2
3434
chmod +x /home/buck2
3535
mv /home/buck2 /usr/local/bin/buck2
36-
cargo install --locked --git https://github.com/facebookincubator/reindeer reindeer

0 commit comments

Comments
 (0)