This commit is contained in:
Max Schmitt 2024-04-24 17:12:22 +00:00
parent cfaa1f0d88
commit 06f33d7132
5 changed files with 5 additions and 16 deletions

1
.gitignore vendored
View file

@ -7,6 +7,7 @@ node_modules/
*.swp
*.pyc
.vscode
.mono
.idea
yarn.lock
/packages/playwright-core/src/generated

View file

@ -14,11 +14,11 @@ Azure Functions Core Tools is not available on macOS M1 yet, so we use GitHub Co
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg
sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-ubuntu-$(lsb_release -cs)-prod $(lsb_release -cs) main" > /etc/apt/sources.list.d/dotnetdev.list'
apt-get update && apt-get install azure-functions-core-tools-4
apt-get update && apt-get install azure-functions-core-tools-4 sudo
```
- Install Azure CLI:
```bash
curl -sL https://aka.ms/InstallAzureCLIDeb | bash
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
```
- Login to Azure:
```bash

View file

@ -16,6 +16,6 @@
},
"extensionBundle": {
"id": "Microsoft.Azure.Functions.ExtensionBundle",
"version": "[2.*, 3.0.0)"
"version": "[4.*, 5.0.0)"
}
}

View file

@ -2,6 +2,7 @@
"name": "flakiness-dashboard",
"version": "",
"description": "",
"main": "processing/index.js",
"author": "",
"dependencies": {
"@azure/identity": "^4.1.0",

View file

@ -1,13 +0,0 @@
{
"version": "2.0",
"extensions": {
"queues": {
"batchSize": 1,
"newBatchThreshold": 0
}
},
"extensionBundle": {
"id": "Microsoft.Azure.Functions.ExtensionBundle",
"version": "[1.*, 2.0.0)"
}
}