Skip to content

Smoke Test - .NET Isolated on Functions V4 #934

Smoke Test - .NET Isolated on Functions V4

Smoke Test - .NET Isolated on Functions V4 #934

name: Smoke Test - .NET Isolated on Functions V4
on:
workflow_dispatch:
push:
branches: [ main, dev ]
paths:
- 'src/**'
- 'test/SmokeTests/OOProcSmokeTests/DotNetIsolated/**'
pull_request:
branches: [ main, dev ]
paths:
- 'src/**'
- 'test/SmokeTests/OOProcSmokeTests/DotNetIsolated/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Validation is blocked on https://github.com/Azure/azure-functions-host/issues/7995
- name: Run V4 .NET Isolated Smoke Test
run: test/SmokeTests/e2e-test.ps1 -DockerfilePath test/SmokeTests/OOProcSmokeTests/DotNetIsolated/Dockerfile -HttpStartPath api/StartHelloCitiesTyped -Sleep 120
shell: pwsh
# # Test that OOM errors are recoverable
# - name: Run V4 .NET OOM Test
# run: azurite --silent --blobPort 10000 --queuePort 10001 --tablePort 10002 --skipApiVersionCheck & test/SmokeTests/e2e-test.ps1 -DockerfilePath test/SmokeTests/OOProcSmokeTests/DotNetIsolated/Dockerfile -HttpStartPath api/durable_HttpStartOOMOrchestrator
# shell: pwsh
# # Test that FailFast errors are recoverable
# - name: Run V4 .NET FailFast Test
# run: azurite --silent --blobPort 10000 --queuePort 10001 --tablePort 10002 --skipApiVersionCheck & test/SmokeTests/e2e-test.ps1 -DockerfilePath test/SmokeTests/OOProcSmokeTests/DotNetIsolated/Dockerfile -HttpStartPath api/durable_HttpStartProcessExitOrchestrator
# shell: pwsh
# # Test that timeout errors are recoverable
# - name: Run V4 .NET FailFast Test
# run: azurite --silent --blobPort 10000 --queuePort 10001 --tablePort 10002 --skipApiVersionCheck & test/SmokeTests/e2e-test.ps1 -DockerfilePath test/SmokeTests/OOProcSmokeTests/DotNetIsolated/Dockerfile -HttpStartPath api/durable_HttpStartTimeoutOrchestrator
# shell: pwsh