Skip to content
Snippets Groups Projects
.pkgr.yml 866 B
Newer Older
  • Learn to ignore specific revisions
  • services:
      - postgres
    
    before_precompile: ./bin/pkgr_before_precompile.sh
    
    env: 
      - SKIP_STORAGE_VALIDATION=true 
    
    targets:
      debian-7: &wheezy
        build_dependencies:
    
        dependencies:
          - libicu48
          - libpcre3
          - git
      ubuntu-12.04: *wheezy
      ubuntu-14.04:
        build_dependencies:
    
        dependencies:
          - libicu52
          - libpcre3
          - git
    
      ubuntu-16.04:
        build_dependencies:
          - libkrb5-dev
          - libicu-dev
          - cmake
          - pkg-config
        dependencies:
          - libicu55
          - libpcre3
          - git
    
    Cyril Rohr's avatar
    Cyril Rohr committed
      centos-6:
        build_dependencies:
    
    Cyril Rohr's avatar
    Cyril Rohr committed
          - libicu-devel
    
    Cyril Rohr's avatar
    Cyril Rohr committed
        dependencies:
          - libicu
          - pcre
          - git