Skip to content

Commit 865b3a4

Browse files
fix(CI): install-just to use cargo as its installer instead of apt backed by Prebuilt-MPR (#822)
* fix(CI): install-just to use cargo as its installer instead of apt backed by Prebuilt-MPR Signed-off-by: Yashvardhan Kukreja <[email protected]> * fix Signed-off-by: Yashvardhan Kukreja <[email protected]> --------- Signed-off-by: Yashvardhan Kukreja <[email protected]>
1 parent 3ae144e commit 865b3a4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.circleci/main_config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ commands:
3131
- run:
3232
name: "Install just"
3333
command: |
34-
wget -qO - 'https://proget.makedeb.org/debian-feeds/prebuilt-mpr.pub' | gpg --dearmor | sudo tee /usr/share/keyrings/prebuilt-mpr-archive-keyring.gpg 1> /dev/null
35-
echo "deb [arch=all,$(dpkg --print-architecture) signed-by=/usr/share/keyrings/prebuilt-mpr-archive-keyring.gpg] https://proget.makedeb.org prebuilt-mpr $(lsb_release -cs)" | sudo tee /etc/apt/sources.list.d/prebuilt-mpr.list
36-
sudo apt update
37-
sudo apt install just
34+
curl https://sh.rustup.rs -sSf | sh -s -- -y
35+
echo 'export PATH="$PATH:$HOME/.cargo/bin"' >> $BASH_ENV
36+
source $BASH_ENV
37+
cargo install just
3838
install-foundry:
3939
steps:
4040
- run:

0 commit comments

Comments
 (0)