.gitlab-ci.yml 527 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
image:
    name: debian:stretch


# Defines stages which are to be executed
stages: 
    - build
#    - deploy
    
# Is performed before the scripts in the stages step
before_script:
  - apt-get update
  - apt-get -y install apt-utils figlet build-essential devscripts debhelper


# Stage "buildcalamares"
run-build:  
  stage: build
  script:
    - figlet BUILD
    - cd  packages/calamares-settings-hamara/
    - dpkg-buildpackage -us -uc
    

  artifacts:
    name: "calamares"
    untracked: true
    expire_in: 2 weeks