-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
.gitpod.yml
24 lines (23 loc) · 850 Bytes
/
.gitpod.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
tasks:
- command: |
# Update the list of packages
sudo apt-get update
# Install pre-requisite packages.
sudo apt-get install -y wget apt-transport-https software-properties-common
# Download the Microsoft repository GPG keys
wget -q https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb
# Register the Microsoft repository GPG keys
sudo dpkg -i packages-microsoft-prod.deb
# Update the list of packages after we added packages.microsoft.com
sudo apt-get update
# Install PowerShell
sudo apt-get install -y powershell
rm packages-microsoft-prod.deb
cd src/GithubActionGeneration
pipenv install
vscode:
extensions:
- matklad.rust-analyzer
- bungcip.better-toml
- usernamehw.errorlens
- ms-azuretools.vscode-docker