Skip to content

Commit

Permalink
filter tests more aggressively
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmrdavid authored Jun 18, 2024
1 parent 27fe08d commit 4cebccd
Showing 1 changed file with 7 additions and 18 deletions.
25 changes: 7 additions & 18 deletions .github/workflows/validate-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,6 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v3

- name: Install Azure Storage Emulator
run: |
curl -L -o azurestorageemulator.msi "https://download.microsoft.com/download/C/1/9/C1902F99-2183-49E0-BFC8-A7B6E2D8A62E/MicrosoftAzureStorageEmulator.msi"
msiexec /i azurestorageemulator.msi
- name: Start Azure Storage Emulator
shell: cmd
run: |
"C:\Program Files (x86)\Microsoft SDKs\Azure\Storage Emulator\AzureStorageEmulator.exe" init
"C:\Program Files (x86)\Microsoft SDKs\Azure\Storage Emulator\AzureStorageEmulator.exe" start
- name: Set up .NET Core 3.1
uses: actions/setup-dotnet@v3
with:
Expand All @@ -56,13 +45,13 @@ jobs:
- name: Build
run: dotnet build $solution #--configuration $config #--no-restore -p:FileVersionRevision=$GITHUB_RUN_NUMBER -p:ContinuousIntegrationBuild=true

# - name: Set up Node.js
# uses: actions/setup-node@v3
# with:
# node-version: '16.x'
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16.x'

# - name: Install Azurite
# run: npm install -g azurite
- name: Install Azurite
run: npm install -g azurite

- name: Test DTx.Core
run: dotnet test #--configuration $config --no-build --verbosity normal
run: azurite --blobPort 10000 --queuePort 10001 --tablePort 10002 & dotnet test ./test/FunctionsV2/WebJobs.Extensions.DurableTask.Tests.V2.csproj #--configuration $config --no-build --verbosity normal

0 comments on commit 4cebccd

Please sign in to comment.