We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f05e34 commit 94c43e2Copy full SHA for 94c43e2
build/Build.Windows.ps1
@@ -29,6 +29,16 @@ function Execute-Tests($version)
29
{
30
& dotnet test ./test/SeqCli.Tests/SeqCli.Tests.csproj -c Release --framework "$framework" /p:Configuration=Release /p:Platform=x64 /p:VersionPrefix=$version
31
if($LASTEXITCODE -ne 0) { throw "Build failed" }
32
+
33
+ cd ./test/SeqCli.EndToEnd/
34
+ docker pull datalust/seq:latest
35
+ & dotnet run -f $framework -- --docker-server
36
+ if ($LASTEXITCODE -ne 0)
37
+ {
38
+ cd ../..
39
+ exit 1
40
+ }
41
42
}
43
44
function Create-ArtifactDir
0 commit comments