Skip to content

Commit

Permalink
netcore: cleanup integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
MrLuje committed Aug 24, 2020
1 parent 99d6bab commit 81ca49a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions integration/testdata/debug/netcore/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ RUN dotnet restore "src/HelloWorld/HelloWorld.csproj"
COPY . .
WORKDIR "/src/HelloWorld"
RUN ls -al
RUN dotnet build "HelloWorld.csproj" -c Debug -o /app/build
RUN dotnet build "HelloWorld.csproj" --configuration Debug -o /app/build

FROM build AS publish
RUN dotnet publish "HelloWorld.csproj" -c Debug -o /app/publish
RUN dotnet publish "HelloWorld.csproj" --configuration Debug -o /app/publish

FROM base AS final
WORKDIR /app
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>


</Project>
1 change: 1 addition & 0 deletions pkg/skaffold/debug/transform_netcore_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import (
"testing"

"github.com/GoogleContainerTools/skaffold/testutil"

v1 "k8s.io/api/core/v1"
)

Expand Down

0 comments on commit 81ca49a

Please sign in to comment.