From 06aba0849c8125f0ba4b19e677984dca06c3d399 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Tue, 11 Jul 2023 23:06:55 -0400 Subject: [PATCH] graph-builder: add scopes for ppc64le for stable We are now shipping ppc64le on the FCOS stable stream. --- fcos-graph-builder/src/settings.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fcos-graph-builder/src/settings.rs b/fcos-graph-builder/src/settings.rs index 0fcb06b..2799d2d 100644 --- a/fcos-graph-builder/src/settings.rs +++ b/fcos-graph-builder/src/settings.rs @@ -34,11 +34,12 @@ impl ServiceSettings { /// Default TCP port for graph-builder main service. const DEFAULT_GB_SERVICE_PORT: u16 = 8080; /// Default scopes (basearch plus stream) to process. - const DEFAULT_SCOPES: [(&'static str, &'static str); 11] = [ + const DEFAULT_SCOPES: [(&'static str, &'static str); 12] = [ ("aarch64", "next"), ("aarch64", "stable"), ("aarch64", "testing"), ("ppc64le", "next"), + ("ppc64le", "stable"), ("ppc64le", "testing"), ("s390x", "next"), ("s390x", "stable"),