From e6d7c7414f521ef5d3975fa7e4e720270089329d Mon Sep 17 00:00:00 2001
From: Jason Hiser <jdhiser@gmail.com>
Date: Thu, 6 Oct 2022 11:04:45 -0400
Subject: [PATCH] Add fuzzing to CI config file.

---
 .gitlab-ci.yml | 33 ++++++++++++---------------------
 1 file changed, 12 insertions(+), 21 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9bc5670..e5a572d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,4 +1,3 @@
-
 before_script:
   - "source ~gitlab-runner/cicd_support/cicd_support.shinc"
 
@@ -38,12 +37,6 @@ do-clean-ubuntu18:
   tags:
     - ubuntu18
 
-do-clean-ubuntu16:
-  stage: clean
-  script:
-    - ./cicd_testing/do-clean.sh
-  tags:
-    - ubuntu16
 
 do-clean-arm32:
   stage: clean
@@ -90,12 +83,6 @@ do-build-ubuntu18:
   tags:
     - ubuntu18
 
-do-build-ubuntu16:
-  stage: build
-  script:
-    - ./cicd_testing/do-build.sh
-  tags:
-    - ubuntu16
 
 do-build-arm64:
   stage: build
@@ -143,12 +130,6 @@ do-test-ubuntu18:
   tags:
     - ubuntu18
 
-do-test-ubuntu16:
-  stage: test
-  script:
-    - ./cicd_testing/do-test.sh
-  tags:
-    - ubuntu16
 
 do-test-arm32:
   stage: test
@@ -173,12 +154,22 @@ do-test-centos76:
     - centos76
 
 
+#
+# Fuzz
+#
+fuzz:
+  stage: fuzz
+  script:
+    - ./cicd_testing/do-fuzz.sh
+  tags:
+    - fuzz
+
 #
 # Deploy
 #
-do-deploy-ubuntu18:
+do-deploy-ubuntu22:
   stage: deploy
   script:
     - ./cicd_testing/do-deploy.sh
   tags:
-    - ubuntu18
+    - ubuntu22
-- 
GitLab