Skip to content
Snippets Groups Projects
Select Git revision
  • 2128f2a76883f87a25136e05706eee55050108ab
  • master default protected
  • testing
  • 0.8.0-1
  • 0.7.0-3
  • 0.7.0-2
  • 0.7.0-1
7 results

.gitlab-ci.yml

Blame
  • .gitlab-ci.yml 516 B
    image: obarun/pkgbuild:latest
    
    variables:
      repo: "$CI_PROJECT_DIR"
      pkg_name: "$CI_PROJECT_NAME"
      # followed variable are ignored
      pkg_track: "branch"
      pkg_target: "$CI_COMMIT_REF_NAME"
      pkg_address: "$CI_PROJECT_URL"
    
    build_repo:
      script:
       # you can specify the directory where find pkgbuild
       # with e.g builder.sh --chdir=trunk
       # you can ask to install the package after a build
       # e.g builder.sh --install
       - builder.sh
      
      artifacts:
        expire_in: 2 days
        paths:
          - "*.pkg.tar.xz"