Skip to content
Closed
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
7 changes: 7 additions & 0 deletions tools/install-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,13 @@ apt-get install nodejs -y
# Install Yarn
npm i -g yarn

# Install gh CLI
mkdir -p /etc/apt/keyrings
curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo gpg --dearmor -o /etc/apt/keyrings/githubcli-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list
apt-get update
apt-get install gh -y

# dbusmock is needed for Electron tests
apt-get install -y python3-dbusmock

Expand Down
Loading