From 22c5dc0f612aec90e8a76a99846da97e44c1b71d Mon Sep 17 00:00:00 2001 From: Fabien Boucher Date: Feb 09 2021 18:00:00 +0000 Subject: FZCI.dhall: add f34 branch --- diff --git a/FZCI.dhall/Branches.dhall b/FZCI.dhall/Branches.dhall index efab35b..f0c7958 100644 --- a/FZCI.dhall/Branches.dhall +++ b/FZCI.dhall/Branches.dhall @@ -4,17 +4,23 @@ let Arches = ./Arches.dhall let --| When changing that union, update the `all` attribute too Union = - < Rawhide | F32 | F33 | Epel8 > + < Rawhide | F32 | F33 | F34 | Epel8 > -let eq_def = { Rawhide = False, F32 = False, F33 = False, Epel8 = False } +let eq_def = + { Rawhide = False, F32 = False, F33 = False, F34 = False, Epel8 = False } let show = λ(branch : Union) → merge - { Rawhide = "rawhide", F32 = "f32", F33 = "f33", Epel8 = "epel8" } + { Rawhide = "rawhide" + , F32 = "f32" + , F33 = "f33" + , F34 = "f34" + , Epel8 = "epel8" + } branch -let all = [ Union.Rawhide, Union.F33, Union.F32, Union.Epel8 ] +let all = [ Union.Rawhide, Union.F34, Union.F33, Union.F32, Union.Epel8 ] let isRawhide = λ(branch : Union) → merge (eq_def ⫽ { Rawhide = True }) branch @@ -35,7 +41,12 @@ in { Type = Union , target = λ(branch : Union) → merge - { Rawhide = "rawhide", F32 = "f32", F33 = "f33", Epel8 = "epel8" } + { Rawhide = "rawhide" + , F32 = "f32" + , F33 = "f33" + , F34 = "f34" + , Epel8 = "epel8" + } branch , arches = λ(branch : Union) → @@ -43,6 +54,7 @@ in { Type = Union { Rawhide = Arches.fedora , F32 = Arches.fedora , F33 = Arches.fedora + , F34 = Arches.fedora , Epel8 = Arches.epel8 } branch @@ -55,6 +67,8 @@ in { Type = Union "https://kojipkgs.fedoraproject.org/repos/f32-build/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/" , Epel8 = "https://kojipkgs.fedoraproject.org/repos/epel8-build/latest/x86_64/" }