diff --git a/build/azure-pipelines.yml b/build/azure-pipelines.yml index 068d55107c..48f38966f4 100644 --- a/build/azure-pipelines.yml +++ b/build/azure-pipelines.yml @@ -368,7 +368,7 @@ stages: Umbraco__CMS__Unattended__InstallUnattended: true Umbraco__CMS__Global__InstallMissingDatabase: true UmbracoDatabaseServer: (LocalDB)\MSSQLLocalDB - UmbracoDatabaseName: Playwright + UmbracoDatabaseName: AcceptanceTestDB ConnectionStrings__umbracoDbDSN: Server=$(UmbracoDatabaseServer);Database=$(UmbracoDatabaseName);Integrated Security=true; # Custom Umbraco settings Umbraco__CMS__Global__VersionCheckPeriod: 0 @@ -429,7 +429,7 @@ stages: workingDirectory: tests/Umbraco.Tests.AcceptanceTest/misc - pwsh: | dotnet new --install ./nupkg/Umbraco.Templates.*.nupkg - dotnet new umbraco --name Playwright --no-restore --output . + dotnet new umbraco --name AcceptanceTestProject --no-restore --output . dotnet restore --configfile ./nuget.config dotnet build --configuration $(buildConfiguration) --no-restore dotnet dev-certs https diff --git a/tests/Umbraco.Tests.AcceptanceTest/misc/umbraco-linux.docker b/tests/Umbraco.Tests.AcceptanceTest/misc/umbraco-linux.docker index 90b0b96ad2..10c49d71f9 100644 --- a/tests/Umbraco.Tests.AcceptanceTest/misc/umbraco-linux.docker +++ b/tests/Umbraco.Tests.AcceptanceTest/misc/umbraco-linux.docker @@ -11,7 +11,7 @@ COPY nupkg . WORKDIR /build RUN dotnet new --install /nupkg/Umbraco.Templates.*.nupkg -RUN dotnet new umbraco --name Playwright --no-restore --output . +RUN dotnet new umbraco --name AcceptanceTestProject --no-restore --output . RUN dotnet restore --configfile /nuget.config RUN dotnet build --configuration Release --no-restore RUN dotnet publish --configuration Release --no-build --output /dist @@ -46,4 +46,4 @@ ENV Umbraco__CMS__KeepAlive__DisableKeepAliveTask="true" # Set application URL ENV ASPNETCORE_URLS="http://0.0.0.0:5000;https://0.0.0.0:5001" -CMD dotnet Playwright.dll +CMD dotnet AcceptanceTestProject.dll