diff --git a/.gitignore b/.gitignore index 8902876690..69d85e4975 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ node_modules/ *.swp *.pyc .vscode +.mono .idea yarn.lock /packages/playwright-core/src/generated diff --git a/utils/flakiness-dashboard/README.md b/utils/flakiness-dashboard/README.md index 0c3b84f527..7ea2c92a7f 100644 --- a/utils/flakiness-dashboard/README.md +++ b/utils/flakiness-dashboard/README.md @@ -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 diff --git a/utils/flakiness-dashboard/host.json b/utils/flakiness-dashboard/host.json index 5c997fdf49..6432c26df3 100644 --- a/utils/flakiness-dashboard/host.json +++ b/utils/flakiness-dashboard/host.json @@ -16,6 +16,6 @@ }, "extensionBundle": { "id": "Microsoft.Azure.Functions.ExtensionBundle", - "version": "[2.*, 3.0.0)" + "version": "[4.*, 5.0.0)" } } diff --git a/utils/flakiness-dashboard/package.json b/utils/flakiness-dashboard/package.json index d4d50f8c62..d8844674b9 100644 --- a/utils/flakiness-dashboard/package.json +++ b/utils/flakiness-dashboard/package.json @@ -2,6 +2,7 @@ "name": "flakiness-dashboard", "version": "", "description": "", + "main": "processing/index.js", "author": "", "dependencies": { "@azure/identity": "^4.1.0", diff --git a/utils/flakiness-dashboard/processing/host.json b/utils/flakiness-dashboard/processing/host.json deleted file mode 100644 index 7a24f01b78..0000000000 --- a/utils/flakiness-dashboard/processing/host.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "version": "2.0", - "extensions": { - "queues": { - "batchSize": 1, - "newBatchThreshold": 0 - } - }, - "extensionBundle": { - "id": "Microsoft.Azure.Functions.ExtensionBundle", - "version": "[1.*, 2.0.0)" - } -}