aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2024-04-29 08:13:23 +0200
committerJunio C Hamano <gitster@pobox.com>2024-05-06 11:52:24 -0700
commitc7b228e0009f0f3dc99b71156750554978c2a37f (patch)
treeeab7fa6ff01339e4b610d17548a8dd990983ac41
parent786a3e4b8d754d2b14b1208b98eeb0a554ef19a8 (diff)
downloadgit-c7b228e0009f0f3dc99b71156750554978c2a37f.tar.gz
gitlab-ci: add smoke test for fuzzers
Our GitLab CI setup has a test gap where the fuzzers aren't exercised at all. Add a smoke test, similar to the one we have in GitHub Workflows. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--.gitlab-ci.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c0fa2fe90b..33d53b3ec7 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -93,6 +93,15 @@ test:osx:
- t/failed-test-artifacts
when: on_failure
+test:fuzz-smoke-tests:
+ image: ubuntu:latest
+ variables:
+ CC: clang
+ before_script:
+ - ./ci/install-docker-dependencies.sh
+ script:
+ - ./ci/run-build-and-minimal-fuzzers.sh
+
static-analysis:
image: ubuntu:22.04
variables: