Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: RUN_E2E_TESTS_DOTNET3_LCON
name: RUN_E2E_TESTS_DOTNET8_LCON
on:
push:
branches:
Expand All @@ -15,9 +15,9 @@ permissions:
id-token: write

env:
AZURE_FUNCTIONAPP_NAME: gae-fa-dotnet3-lcon
AZURE_FUNCTIONAPP_PACKAGE_PATH: './tests/e2e/dotnet3'
DOTNET_VERSION: '3.1.403'
AZURE_FUNCTIONAPP_NAME: gae-fa-dotnet8-lcon
AZURE_FUNCTIONAPP_PACKAGE_PATH: './tests/e2e/dotnet8'
DOTNET_VERSION: '8.0.405'

jobs:
run:
Expand Down Expand Up @@ -48,13 +48,12 @@ jobs:
run: |
pushd '${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}'
dotnet build --configuration Release --output ./output
echo "$env:GITHUB_SHA" > ./output/sha.txt
popd

- name: 'Login via Azure CLI'
uses: azure/login@v1
with:
client-id: ${{ secrets.AZURE_CLIENT_ID_FA_DOTNET3_LCON }}
client-id: ${{ secrets.AZURE_CLIENT_ID_FA_DOTNET8_LCON }}
tenant-id: ${{ secrets.AZURE_TENANT_ID_FA_E2E_TESTS }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID_FA_E2E_TESTS }}

Expand All @@ -72,7 +71,7 @@ jobs:
while ($i -lt 10) {
sleep 10
$RESPONSE = $(curl "${{ steps.fa.outputs.app-url }}/api/HttpTrigger")
$RESULT = ($RESPONSE -eq "$env:GITHUB_SHA")
$RESULT = ($RESPONSE -eq "Hello world")
if ($RESULT) {
exit 0
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: RUN_E2E_TESTS_DOTNET3_WCON
name: RUN_E2E_TESTS_DOTNET8_WCON
on:
push:
branches:
Expand All @@ -15,9 +15,9 @@ permissions:
id-token: write

env:
AZURE_FUNCTIONAPP_NAME: gae-fa-dotnet3-wcon
AZURE_FUNCTIONAPP_PACKAGE_PATH: './tests/e2e/dotnet3'
DOTNET_VERSION: '3.1.403'
AZURE_FUNCTIONAPP_NAME: gae-fa-dotnet8-wcon
AZURE_FUNCTIONAPP_PACKAGE_PATH: './tests/e2e/dotnet8'
DOTNET_VERSION: '8.0.405'

jobs:
run:
Expand Down Expand Up @@ -48,13 +48,12 @@ jobs:
run: |
pushd '${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}'
dotnet build --configuration Release --output ./output
echo "$env:GITHUB_SHA" > ./output/sha.txt
popd

- name: 'Login via Azure CLI'
uses: azure/login@v1
with:
client-id: ${{ secrets.AZURE_CLIENT_ID_FA_DOTNET3_WCON }}
client-id: ${{ secrets.AZURE_CLIENT_ID_FA_DOTNET8_WCON }}
tenant-id: ${{ secrets.AZURE_TENANT_ID_FA_E2E_TESTS }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID_FA_E2E_TESTS }}

Expand All @@ -72,7 +71,7 @@ jobs:
while ($i -lt 10) {
sleep 10
$RESPONSE = $(curl "${{ steps.fa.outputs.app-url }}/api/HttpTrigger")
$RESULT = ($RESPONSE -eq "$env:GITHUB_SHA")
$RESULT = ($RESPONSE -eq "Hello world")
if ($RESULT) {
exit 0
}
Expand Down
82 changes: 0 additions & 82 deletions .github/workflows/run-e2e-tests-python37-lcon.yaml

This file was deleted.

4 changes: 2 additions & 2 deletions eng/ci/templates/jobs/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ jobs:
displayName: 'Use .NET Core sdk'
inputs:
packageType: sdk
version: 3.1.x
version: 8.0.x

- task: DotNetCoreCLI@2
inputs:
command: 'build'
projects: 'tests/e2e/dotnet3/*.csproj'
projects: 'tests/e2e/dotnet8/*.csproj'
displayName: 'Build project for csharp language'
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 0 additions & 25 deletions tests/e2e/dotnet3/HttpTrigger.cs

This file was deleted.

21 changes: 0 additions & 21 deletions tests/e2e/dotnet3/dotnet3.csproj

This file was deleted.

11 changes: 0 additions & 11 deletions tests/e2e/dotnet3/host.json

This file was deleted.

1 change: 0 additions & 1 deletion tests/e2e/dotnet3/sha.txt

This file was deleted.

Loading
Loading