Skip to content

Commit

Permalink
Minor tweaks to see if that resolves file in use issue
Browse files Browse the repository at this point in the history
  • Loading branch information
PTaladay committed Apr 5, 2024
1 parent 0c35741 commit 56cda9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/actions/dotnet-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,4 @@ runs:
steps:
- name: Build
shell: bash
run: dotnet build --configuration ${{inputs.buildConfiguration}} -p:ContinuousIntegrationBuild=true -p:AssemblyVersion="${{inputs.assemblyVersion}}" -p:FileVersion="${{inputs.fileVersion}}" -p:InformationalVersion="${{inputs.informationalVersion}}" -p:Version="${{inputs.majorMinorPatch}}" -warnaserror
# using max cpu count of 1 to avoid file usage conflicts
run: dotnet build "./Microsoft.Health.Fhir.sln" --configuration ${{inputs.buildConfiguration}} "-p:ContinuousIntegrationBuild=true;AssemblyVersion=${{inputs.assemblyVersion}};FileVersion=${{inputs.fileVersion}};InformationalVersion=${{inputs.informationalVersion}};Version=${{inputs.majorMinorPatch}}" -warnaserror
2 changes: 1 addition & 1 deletion .github/actions/dotnet-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ runs:
steps:
- name: Run Unit Tests
shell: bash
run: dotnet test "Microsoft.Health.Fhir.sln" --no-restore --filter "FullyQualifiedName~UnitTests" --configuration ${{inputs.buildConfiguration}} --no-build --verbosity normal
run: dotnet test "Microsoft.Health.Fhir.sln" -p:ContinuousIntegrationBuild=true; --filter "FullyQualifiedName~UnitTests" --configuration ${{inputs.buildConfiguration}} --no-build --verbosity normal

0 comments on commit 56cda9c

Please sign in to comment.