Remove ChromeCQ from skcms

Bug: skia:12238
Change-Id: I70a074ae2960fa0645d75b39ced8c3358b1ecd85
Reviewed-on: https://skia-review.googlesource.com/c/skcms/+/430420
Reviewed-by: Eric Boren <borenet@google.com>
diff --git a/generated/commit-queue.cfg b/generated/commit-queue.cfg
deleted file mode 100644
index 7dcb964..0000000
--- a/generated/commit-queue.cfg
+++ /dev/null
@@ -1,41 +0,0 @@
-# Auto-generated by lucicfg.
-# Do not modify manually.
-#
-# For the schema of this file, see Config message:
-#   https://luci-config.appspot.com/schemas/projects:commit-queue.cfg
-
-cq_status_host: "chromium-cq-status.appspot.com"
-submit_options {
-  max_burst: 2
-  burst_delay {
-    seconds: 300
-  }
-}
-config_groups {
-  name: "skcms"
-  gerrit {
-    url: "https://skia-review.googlesource.com"
-    projects {
-      name: "skcms"
-      ref_regexp: "refs/heads/.+"
-    }
-  }
-  verifiers {
-    gerrit_cq_ability {
-      committer_list: "project-skia-committers"
-      dry_run_access_list: "project-skia-tryjob-access"
-    }
-    tryjob {
-      builders {
-        name: "skia/skia.primary/skcms"
-      }
-      retry_config {
-        single_quota: 1
-        global_quota: 2
-        failure_weight: 2
-        transient_failure_weight: 1
-        timeout_weight: 2
-      }
-    }
-  }
-}
diff --git a/main.star b/main.star
index d2e6dc0..9dce4a3 100755
--- a/main.star
+++ b/main.star
@@ -15,29 +15,3 @@
 luci.logdog(
     gs_bucket = "skia-logdog",
 )
-
-luci.cq (
-    status_host = "chromium-cq-status.appspot.com",
-    submit_burst_delay = time.duration(300000),
-    submit_max_burst = 2,
-)
-
-luci.cq_group(
-    name = "skcms",
-    watch = cq.refset(
-        repo = "https://skia.googlesource.com/skcms",
-        refs = [ "refs/heads/.+" ],
-    ),
-    retry_config = cq.retry_config(
-        single_quota = 1,
-        global_quota = 2,
-        failure_weight = 2,
-        transient_failure_weight = 1,
-        timeout_weight = 2,
-    ),
-    verifiers = [
-        luci.cq_tryjob_verifier(
-            builder = "skia:skia.primary/skcms",
-        ),
-    ],
-)