Skip to content

Commit

Permalink
More actions changes
Browse files Browse the repository at this point in the history
  • Loading branch information
iadgovuser29 committed Apr 12, 2024
1 parent cedc4fd commit 85b5ba3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dotnet-build-hardwaremanifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
run: dotnet restore
- name: Build
working-directory: dotnet/HardwareManifestPlugin
run: dotnet build --no-restore
run: dotnet build
- name: Test
working-directory: dotnet/HardwareManifestPlugin
run: dotnet test --no-build
run: dotnet test
- name: Pack
working-directory: dotnet/HardwareManifestPlugin
run: dotnet pack
4 changes: 2 additions & 2 deletions .github/workflows/dotnet-build-paccor_scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
run: dotnet restore
- name: Build
working-directory: dotnet/paccor_scripts
run: dotnet build --no-restore
run: dotnet build
- name: Test
working-directory: dotnet/paccor_scripts
run: dotnet test --no-build
run: dotnet test
- name: Pack
working-directory: dotnet/paccor_scripts
run: dotnet pack
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@
<Exec Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))'" Command="for /f %%i in ('dir /s /b $(FOLDER_PROTO)\*.proto') do ( $(protoc) --proto_path=$(protoc_tools) --proto_path=$(PlatformCertificateProtoFilesDir) -I=$(FOLDER_PROTO) --csharp_out=$(FOLDER_OUT) %%i )" />
<Exec Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))'" Command="for file in `ls -1R $(FOLDER_PROTO)/*.proto` ; do $(protoc) --proto_path=$(protoc_tools) --proto_path=$(PlatformCertificateProtoFilesDir) -I=$(FOLDER_PROTO) --csharp_out=$(FOLDER_OUT) $file; done " />

<ItemGroup>
<Compile Condition="Exists('$(FOLDER_OUT)')" Include="$(FOLDER_OUT)/*.cs" />
</ItemGroup>
<ItemGroup>
<GeneratedFiles Include="$(FOLDER_OUT)/*.cs;" />
</ItemGroup>
Expand Down

0 comments on commit 85b5ba3

Please sign in to comment.