Magnus pushed to branch wip/mangoiv/ghcup-metadata-missing-fix at Glasgow Haskell Compiler / GHC

Commits:

2 changed files:

Changes:

  • .gitlab/generate-ci/gen_ci.hs
    ... ... @@ -1173,17 +1173,17 @@ debian_x86 =
    1173 1173
     
    
    1174 1174
     debian_aarch64 :: [JobGroup Job]
    
    1175 1175
     debian_aarch64 =
    
    1176
    -  [
    
    1177
    -     disableValidate (standardBuildsWithConfig AArch64 (Linux Debian11) (splitSectionsBroken vanilla))
    
    1178
    -   , disableValidate (standardBuildsWithConfig AArch64 (Linux Debian12) (splitSectionsBroken vanilla))
    
    1179
    -   , fastCI (standardBuildsWithConfig AArch64 (Linux Debian13) (splitSectionsBroken vanilla))
    
    1180
    -     -- LLVM backend bootstrap
    
    1181
    -   , onlyRule LLVMBackend (validateBuilds AArch64 (Linux Debian13) llvm)
    
    1176
    +  [ disableValidate (standardBuildsWithConfig AArch64 (Linux Debian11) (splitSectionsBroken vanilla))
    
    1177
    +  , disableValidate (standardBuildsWithConfig AArch64 (Linux Debian12) (splitSectionsBroken vanilla))
    
    1178
    +  , fastCI (standardBuildsWithConfig AArch64 (Linux Debian13) (splitSectionsBroken vanilla))
    
    1179
    +    -- LLVM backend bootstrap
    
    1180
    +  , onlyRule LLVMBackend (validateBuilds AArch64 (Linux Debian13) llvm)
    
    1182 1181
       ]
    
    1183 1182
     
    
    1184 1183
     debian_i386 :: [JobGroup Job]
    
    1185 1184
     debian_i386 =
    
    1186 1185
       [ disableValidate (standardBuildsWithConfig I386 (Linux Debian11) (splitSectionsBroken vanilla))
    
    1186
    +  , disableValidate (standardBuildsWithConfig I386 (Linux Debian12) (splitSectionsBroken vanilla))
    
    1187 1187
       , addValidateRule I386Backend (standardBuildsWithConfig I386 (Linux Debian13) (splitSectionsBroken vanilla))
    
    1188 1188
       ]
    
    1189 1189
     
    

  • .gitlab/rel_eng/mk-ghcup-metadata/mk_ghcup_metadata.py
    ... ... @@ -244,7 +244,8 @@ def mk_new_yaml(release_mode, version, date, pipeline_type, job_map):
    244 244
               }
    
    245 245
     
    
    246 246
         a32 = { "Linux_Debian": { "( >= 11 && < 12 )": deb11_i386
    
    247
    -                            , ">= 12": deb12_i386
    
    247
    +                            , "( >= 12 && < 13 )": deb12_i386
    
    248
    +                            , ">= 13": deb13_i386
    
    248 249
                                 , "unknown_versioning": deb11_i386 }
    
    249 250
               , "Linux_Ubuntu": { "unknown_versioning": deb11_i386 }
    
    250 251
               , "Linux_Mint" : { "unknown_versioning": deb11_i386 }