From fafe0d592d168c29955ce32bc61fc7c48a680f0d Mon Sep 17 00:00:00 2001 From: Fabien Boucher Date: Feb 11 2022 10:37:37 +0000 Subject: Add F36 and F33 branch support --- diff --git a/FZCI.dhall/Branches.dhall b/FZCI.dhall/Branches.dhall index 9bd11e5..06c4bd8 100644 --- a/FZCI.dhall/Branches.dhall +++ b/FZCI.dhall/Branches.dhall @@ -4,23 +4,23 @@ let Arches = ./Arches.dhall let --| When changing that union, update the `all` attribute too Union = - < Rawhide | F33 | F34 | F35 | Epel8 > + < Rawhide | F34 | F35 | F36 | Epel8 > let eq_def = - { Rawhide = False, F33 = False, F34 = False, F35 = False, Epel8 = False } + { Rawhide = False, F34 = False, F35 = False, F36 = False, Epel8 = False } let show = λ(branch : Union) → merge { Rawhide = "rawhide" - , F33 = "f33" , F34 = "f34" , F35 = "f35" + , F36 = "f36" , Epel8 = "epel8" } branch -let all = [ Union.Rawhide, Union.F35, Union.F34, Union.F33, Union.Epel8 ] +let all = [ Union.Rawhide, Union.F36, Union.F35, Union.F34, Union.Epel8 ] let isRawhide = λ(branch : Union) → merge (eq_def ⫽ { Rawhide = True }) branch @@ -42,9 +42,9 @@ in { Type = Union λ(branch : Union) → merge { Rawhide = "rawhide" - , F33 = "f33" , F34 = "f34" , F35 = "f35" + , F36 = "f36" , Epel8 = "epel8" } branch @@ -52,9 +52,9 @@ in { Type = Union λ(branch : Union) → merge { Rawhide = Arches.fedora - , F33 = Arches.fedora , F34 = Arches.fedora , F35 = Arches.fedora + , F36 = Arches.fedora , Epel8 = Arches.epel8 } branch @@ -63,12 +63,12 @@ in { Type = Union merge { Rawhide = "https://kojipkgs.fedoraproject.org/repos/rawhide/latest/x86_64/" - , F33 = - "https://kojipkgs.fedoraproject.org/repos/f33-build/latest/x86_64/" , F34 = "https://kojipkgs.fedoraproject.org/repos/f34-build/latest/x86_64/" , F35 = "https://kojipkgs.fedoraproject.org/repos/f35-build/latest/x86_64/" + , F36 = + "https://kojipkgs.fedoraproject.org/repos/f36-build/latest/x86_64/" , Epel8 = "https://kojipkgs.fedoraproject.org/repos/epel8-build/latest/x86_64/" }