From 404844bc8ecb291d6bc8ef5b6bb18ae2b0f435ec Mon Sep 17 00:00:00 2001 From: Zhiyuan Liang Date: Wed, 22 Jul 2026 11:35:03 +0800 Subject: [PATCH 1/7] test login --- azure-pipelines.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e43f7c10..e8af99f0 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -14,3 +14,14 @@ pool: steps: - script: echo "Hello from Azure Pipelines" displayName: Hello world + +- task: AzureCLI@2 + displayName: Verify Azure login + inputs: + azureSubscription: a4f7a683-6e11-4c35-a16e-db4a1f4e2111 + scriptType: bash + scriptLocation: inlineScript + inlineScript: | + echo "Verifying Azure login via the new service connection..." + az account show + echo "Client id: $AZURESUBSCRIPTION_CLIENT_ID" From ffcbfd939378526ec4744c70ec39438c2f80baec Mon Sep 17 00:00:00 2001 From: Zhiyuan Liang Date: Wed, 22 Jul 2026 13:03:50 +0800 Subject: [PATCH 2/7] temporarily skip test --- .github/workflows/ci.yml | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2928be53..9c4fa67f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,23 +41,24 @@ jobs: - name: Dotnet Pack run: pwsh pack.ps1 - - name: Azure Login with OIDC - uses: azure/login@v1 - with: - client-id: ${{ secrets.AZURE_CLIENT_ID }} - tenant-id: ${{ secrets.AZURE_TENANT_ID }} - subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} - - - name: Dotnet Test - run: pwsh test.ps1 - env: - AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} - - - name: Publish Test Results - uses: actions/upload-artifact@v4 - with: - name: Unit Test Results - path: ${{ github.workspace }}/tests/**/*.trx + # --- Test steps temporarily skipped --- + # - name: Azure Login with OIDC + # uses: azure/login@v1 + # with: + # client-id: ${{ secrets.AZURE_CLIENT_ID }} + # tenant-id: ${{ secrets.AZURE_TENANT_ID }} + # subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} + # + # - name: Dotnet Test + # run: pwsh test.ps1 + # env: + # AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} + # + # - name: Publish Test Results + # uses: actions/upload-artifact@v4 + # with: + # name: Unit Test Results + # path: ${{ github.workspace }}/tests/**/*.trx - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v3 From 5cd3d37cdd5bd92fde616db5efa4ec27fc7d834c Mon Sep 17 00:00:00 2001 From: Zhiyuan Liang Date: Wed, 22 Jul 2026 13:14:14 +0800 Subject: [PATCH 3/7] update --- .github/workflows/ci.yml | 48 ++++++++++++++++++++++------------------ 1 file changed, 26 insertions(+), 22 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9c4fa67f..c9893744 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,26 +21,30 @@ jobs: runs-on: windows-latest steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Install .NET - run: pwsh build/install-dotnet.ps1 -RestoreOnly - - - name: Restore - run: pwsh build.ps1 -RestoreOnly - - - name: Initialize CodeQL - uses: github/codeql-action/init@v3 - with: - languages: 'csharp' - - - name: Dotnet Build - run: pwsh build.ps1 - - - name: Dotnet Pack - run: pwsh pack.ps1 + # CI temporarily disabled - build/test/CodeQL are moving to the Azure DevOps pipeline. + - name: CI disabled (migrating to Azure Pipelines) + run: echo "CI steps are temporarily skipped; they run in the Azure DevOps pipeline." + # - name: Checkout code + # uses: actions/checkout@v2 + # + # - name: Install .NET + # run: pwsh build/install-dotnet.ps1 -RestoreOnly + # + # - name: Restore + # run: pwsh build.ps1 -RestoreOnly + # + # - name: Initialize CodeQL + # uses: github/codeql-action/init@v3 + # with: + # languages: 'csharp' + # + # - name: Dotnet Build + # run: pwsh build.ps1 + # + # - name: Dotnet Pack + # run: pwsh pack.ps1 + # # --- Test steps temporarily skipped --- # - name: Azure Login with OIDC # uses: azure/login@v1 @@ -59,6 +63,6 @@ jobs: # with: # name: Unit Test Results # path: ${{ github.workspace }}/tests/**/*.trx - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + # + # - name: Perform CodeQL Analysis + # uses: github/codeql-action/analyze@v3 From ef1ee6dbfc8c9852f4460fb221ad46604ffe8c1c Mon Sep 17 00:00:00 2001 From: Zhiyuan Liang Date: Mon, 27 Jul 2026 17:20:28 +0800 Subject: [PATCH 4/7] update --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c9893744..42c052c3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,6 +25,7 @@ jobs: - name: CI disabled (migrating to Azure Pipelines) run: echo "CI steps are temporarily skipped; they run in the Azure DevOps pipeline." + # # - name: Checkout code # uses: actions/checkout@v2 # From 48a285a99632b2ef17cfa0e93d9d0d917df331ee Mon Sep 17 00:00:00 2001 From: Zhiyuan Liang Date: Mon, 27 Jul 2026 17:26:04 +0800 Subject: [PATCH 5/7] update --- azure-pipelines.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e8af99f0..d0970735 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -2,6 +2,7 @@ trigger: - main - preview - release/* +- zhiyuanliang/test-ap # TEMP: test push-triggering on this branch pr: - main From 200ad281ee932be21b99ba76e8bfca5b985c7f7f Mon Sep 17 00:00:00 2001 From: Zhiyuan Liang Date: Tue, 28 Jul 2026 13:02:18 +0800 Subject: [PATCH 6/7] update --- azure-pipelines.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d0970735..e8af99f0 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -2,7 +2,6 @@ trigger: - main - preview - release/* -- zhiyuanliang/test-ap # TEMP: test push-triggering on this branch pr: - main From 88b982f86c6337e54e6a0e67f3e56a0e925791a0 Mon Sep 17 00:00:00 2001 From: Zhiyuan Liang Date: Tue, 28 Jul 2026 14:58:46 +0800 Subject: [PATCH 7/7] update --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e8af99f0..8041d9c5 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -12,7 +12,7 @@ pool: vmImage: ubuntu-latest steps: -- script: echo "Hello from Azure Pipelines" +- script: echo "Hello from Azure Pipelines - 1" displayName: Hello world - task: AzureCLI@2