This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
magicka/.gitlab-ci.yml

29 lines
658 B
YAML
Raw Normal View History

2018-10-19 11:35:35 +00:00
image: ${CI_REGISTRY}/leenooks/ci-apt:latest
2018-10-19 11:21:26 +00:00
stages:
- build
variables:
2018-10-19 11:31:06 +00:00
VERSION: "0.12"
2018-03-05 08:12:23 +00:00
2018-03-05 07:08:53 +00:00
before_script:
2018-10-19 11:21:26 +00:00
- apt-get update
- apt-get install -y zip unzip dos2unix libbz2-dev zlib1g-dev libgeoip-dev libncurses5-dev libhunspell-dev libsqlite3-dev libreadline-dev libssl1.0-dev libssh-dev libmicrohttpd-dev libdbd-sqlite3-perl libmosquitto-dev m4 sed
2018-10-19 11:40:12 +00:00
- pwd
2018-03-05 07:08:53 +00:00
2018-10-19 11:21:26 +00:00
build:
stage: build
2018-03-05 07:10:23 +00:00
script:
2018-10-19 11:43:33 +00:00
- git archive --format=tar HEAD |gzip -9 > ../${CI_PROJECT_NAME}_${VERSION}.orig.tar.gz
2018-10-19 11:21:26 +00:00
- dpkg-buildpackage -us -uc
2018-10-19 11:49:10 +00:00
- mkdir build
- ls -al ../
- mv ../${CI_PROJECT_NAME}*.deb build
2018-10-19 11:21:26 +00:00
tags:
- apt
only:
- debian
2018-10-19 11:31:06 +00:00
artifacts:
paths:
2018-10-19 11:49:10 +00:00
- build/*deb