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 *.swp
*.pyc *.pyc
.vscode .vscode
.mono
.idea .idea
yarn.lock yarn.lock
/packages/playwright-core/src/generated /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 curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
mv microsoft.gpg /etc/apt/trusted.gpg.d/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' 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: - Install Azure CLI:
```bash ```bash
curl -sL https://aka.ms/InstallAzureCLIDeb | bash curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
``` ```
- Login to Azure: - Login to Azure:
```bash ```bash

View file

@ -16,6 +16,6 @@
}, },
"extensionBundle": { "extensionBundle": {
"id": "Microsoft.Azure.Functions.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", "name": "flakiness-dashboard",
"version": "", "version": "",
"description": "", "description": "",
"main": "processing/index.js",
"author": "", "author": "",
"dependencies": { "dependencies": {
"@azure/identity": "^4.1.0", "@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)"
}
}