Skip to content

Commit

Permalink
Fix output directories
Browse files Browse the repository at this point in the history
  • Loading branch information
pepone committed Sep 13, 2024
1 parent 043f398 commit 8577ac9
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/actions/test-templates/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ runs:

- name: 🧪 Test IceRpc + Protobuf Client Template .NET 9
run: |
dotnet new icerpc-protobuf-client -o templates-test/tcp/ProtobufClient -F net9.0
dotnet new icerpc-protobuf-client -o templates-test/net9.0/tcp/ProtobufClient -F net9.0
dotnet build templates-test/net9.0/tcp/ProtobufClient/ /p:TreatWarningsAsErrors=true
shell: bash

Expand All @@ -46,7 +46,7 @@ runs:

- name: 🧪 Test IceRpc + Protobuf Server Template .NET 9
run: |
dotnet new icerpc-protobuf-server -o templates-test/tcp/ProtobufServer -F net9.0
dotnet new icerpc-protobuf-server -o templates-test/net9.0/tcp/ProtobufServer -F net9.0
dotnet build templates-test/net9.0/tcp/ProtobufServer/ /p:TreatWarningsAsErrors=true
shell: bash

Expand All @@ -72,7 +72,7 @@ runs:

- name: 🧪 Test IceRpc + Slice Client Template .NET 9
run: |
dotnet new icerpc-slice-client -o templates-test/tcp/SliceClient -F net9.0
dotnet new icerpc-slice-client -o templates-test/net9.0/tcp/SliceClient -F net9.0
dotnet build templates-test/net9.0/tcp/SliceClient/ /p:TreatWarningsAsErrors=true
shell: bash

Expand All @@ -98,7 +98,7 @@ runs:

- name: 🧪 Test IceRpc + Slice Server Template .NET 9
run: |
dotnet new icerpc-slice-server -o templates-test/tcp/SliceServer -F net9.0
dotnet new icerpc-slice-server -o templates-test/net9.0/tcp/SliceServer -F net9.0
dotnet build templates-test/net9.0/tcp/SliceServer/ /p:TreatWarningsAsErrors=true
shell: bash

Expand All @@ -118,7 +118,7 @@ runs:

- name: 🧪 Test IceRpc + Protobuf DI Client Template .NET 9
run: |
dotnet new icerpc-protobuf-di-client -o templates-test/ProtobufDIClient -F net9.0
dotnet new icerpc-protobuf-di-client -o templates-test/net9.0/ProtobufDIClient -F net9.0
dotnet build templates-test/net9.0/ProtobufDIClient/ /p:TreatWarningsAsErrors=true
shell: bash

Expand All @@ -132,7 +132,7 @@ runs:

- name: 🧪 Test IceRpc + Protobuf DI Server Template .NET 9
run: |
dotnet new icerpc-protobuf-di-server -o templates-test/ProtobufDIServer -F net9.0
dotnet new icerpc-protobuf-di-server -o templates-test/net9.0/ProtobufDIServer -F net9.0
dotnet build templates-test/net9.0/ProtobufDIServer/ /p:TreatWarningsAsErrors=true
shell: bash

Expand All @@ -146,7 +146,7 @@ runs:

- name: 🧪 Test IceRpc + Slice DI Client Template .NET 9
run: |
dotnet new icerpc-slice-di-client -o templates-test/SliceDIClient -F net9.0
dotnet new icerpc-slice-di-client -o templates-test/net9.0/SliceDIClient -F net9.0
dotnet build templates-test/net9.0/SliceDIClient/ /p:TreatWarningsAsErrors=true
shell: bash

Expand All @@ -160,6 +160,6 @@ runs:

- name: 🧪 Test IceRpc + Slice DI Server Template .NET 9
run: |
dotnet new icerpc-slice-di-server -o templates-test/SliceDIServer -F net9.0
dotnet new icerpc-slice-di-server -o templates-test/net9.0/SliceDIServer -F net9.0
dotnet build templates-test/net9.0/SliceDIServer/ /p:TreatWarningsAsErrors=true
shell: bash
shell: bash

0 comments on commit 8577ac9

Please sign in to comment.