From 47cfea19b8e0222f2b1c12fab8d55b9cea8e9a73 Mon Sep 17 00:00:00 2001 From: Pamela Fox Date: Fri, 3 Oct 2025 10:47:17 -0700 Subject: [PATCH 1/2] Restrict regions due to AppInsights error --- infra/main.bicep | 60 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/infra/main.bicep b/infra/main.bicep index 6fc222f..65795e3 100644 --- a/infra/main.bicep +++ b/infra/main.bicep @@ -7,6 +7,66 @@ param name string @minLength(1) @description('Primary location for all resources') +// microsoft.insights/components has restricted regions +@allowed([ + 'eastus' + 'southcentralus' + 'northeurope' + 'westeurope' + 'southeastasia' + 'westus2' + 'uksouth' + 'canadacentral' + 'centralindia' + 'japaneast' + 'australiaeast' + 'koreacentral' + 'francecentral' + 'centralus' + 'eastus2' + 'eastasia' + 'westus' + 'southafricanorth' + 'northcentralus' + 'brazilsouth' + 'switzerlandnorth' + 'norwayeast' + 'norwaywest' + 'australiasoutheast' + 'australiacentral2' + 'germanywestcentral' + 'switzerlandwest' + 'uaecentral' + 'ukwest' + 'japanwest' + 'brazilsoutheast' + 'uaenorth' + 'australiacentral' + 'southindia' + 'westus3' + 'koreasouth' + 'swedencentral' + 'canadaeast' + 'jioindiacentral' + 'jioindiawest' + 'qatarcentral' + 'southafricawest' + 'germanynorth' + 'polandcentral' + 'israelcentral' + 'italynorth' + 'mexicocentral' + 'spaincentral' + 'newzealandnorth' + 'chilecentral' + 'indonesiacentral' + 'malaysiawest' +]) +@metadata({ + azd: { + type: 'location' + } +}) param location string @description('Whether the deployment is running on GitHub Actions') From 25fc0ff9a74c8ebb0b4cbddd66eaae00a91f57a9 Mon Sep 17 00:00:00 2001 From: Pamela Fox Date: Fri, 3 Oct 2025 10:53:58 -0700 Subject: [PATCH 2/2] Update windows CI --- .github/workflows/app-tests.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/app-tests.yaml b/.github/workflows/app-tests.yaml index 1e67a97..5c6784a 100644 --- a/.github/workflows/app-tests.yaml +++ b/.github/workflows/app-tests.yaml @@ -59,12 +59,12 @@ jobs: run: | call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat" cd %TEMP% - git clone --branch v0.7.4 https://github.com/pgvector/pgvector.git + git clone --branch v0.8.1 https://github.com/pgvector/pgvector.git cd pgvector nmake /NOLOGO /F Makefile.win nmake /NOLOGO /F Makefile.win install - sc config postgresql-x64-14 start=auto - net start postgresql-x64-14 + sc config postgresql-x64-17 start=auto + net start postgresql-x64-17 "%PGBIN%/psql" -d postgres -c "CREATE EXTENSION vector" - name: (Linux) Install pgvector and set password