[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Git][ftp-team/dak][deploy] 4 commits: .gitlab-ci.yml: skip sphinx job on deploy branch



Title: GitLab

Ansgar pushed to branch deploy at Debian FTP Team / dak

Commits:

  • a125ce56
    by Ansgar at 2023-01-21T09:43:30+01:00
    .gitlab-ci.yml: skip sphinx job on deploy branch
    
  • 09c13f37
    by Ansgar at 2023-01-24T19:25:58+01:00
    dep11: skip non-existing directories
    
    Closes: #1029497
    
  • e12db83a
    by Ansgar at 2023-01-24T19:27:31+01:00
    Merge remote-tracking branch 'origin/master' into deploy
    
  • f0b08dfe
    by Ansgar at 2023-01-24T19:28:39+01:00
    Merge branch 'master' into deploy
    

2 changed files:

Changes:

  • .gitlab-ci.yml
    ... ... @@ -53,6 +53,8 @@ sphinx:
    53 53
       artifacts:
    
    54 54
         paths:
    
    55 55
           - docs/_build/html
    
    56
    +  except:
    
    57
    +    - deploy@ftp-team/dak
    
    56 58
     
    
    57 59
     contributors:
    
    58 60
       image: debian:bullseye
    

  • config/debian/dinstall.functions
    ... ... @@ -106,6 +106,9 @@ function dep11() {
    106 106
             for dir in ${extimportdists}; do
    
    107 107
                 if [[ -d ${dir}/  ]]; then
    
    108 108
                     for comp in main contrib non-free non-free-firmware; do
    
    109
    +                    if ! [[ -d ${dir}/${comp} ]]; then
    
    110
    +                        continue
    
    111
    +                    fi
    
    109 112
                         mkdir -p ${ftpdir}/dists/${dir}/${comp}/dep11
    
    110 113
                         cd ${dir}/${comp}
    
    111 114
                         rsync -rtq --delete --delete-after --exclude by-hash --exclude "./*.tmp" . ${ftpdir}/dists/${dir}/${comp}/dep11/.
    


  • Reply to: