summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2019-07-05 11:59:17 +0200
committerPatrick Steinhardt <ps@pks.im>2019-07-05 11:59:17 +0200
commiteb27fb9bdb6018bd65e0adbf1e3efd140533a5d4 (patch)
tree3bb982dfd75638617999df079a0dfdbc9d807646 /ci
parent3c966fb4fb7801a32b785615eb3b815a62b4e0db (diff)
downloadlibgit2-eb27fb9bdb6018bd65e0adbf1e3efd140533a5d4.tar.gz
ci: build fuzzers on Powershell based build jobs
In order to guarantee that our fuzzers build just fine on the Windows platform, let's enable building fuzzers on all Powershell-based builds.
Diffstat (limited to 'ci')
-rw-r--r--ci/build.ps12
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/build.ps1 b/ci/build.ps1
index 20a265de5..dbc458dfc 100644
--- a/ci/build.ps1
+++ b/ci/build.ps1
@@ -18,7 +18,7 @@ Write-Host "####################################################################
Write-Host "## Configuring build environment"
Write-Host "##############################################################################"
-Invoke-Expression "cmake ${SourceDirectory} -DBUILD_EXAMPLES=ON -DENABLE_WERROR=ON ${Env:CMAKE_OPTIONS}"
+Invoke-Expression "cmake ${SourceDirectory} -DBUILD_EXAMPLES=ON -DBUILD_FUZZERS=ON -DUSE_STANDALONE_FUZZERS=ON -DENABLE_WERROR=ON ${Env:CMAKE_OPTIONS}"
if ($LastExitCode -ne 0) { [Environment]::Exit($LastExitCode) }
Write-Host ""