59 lines
1.6 KiB
YAML
59 lines
1.6 KiB
YAML
|
stages:
|
||
|
- setup
|
||
|
- build
|
||
|
- checking
|
||
|
- deploy
|
||
|
|
||
|
# Build package using dpkg-buildpackage
|
||
|
run-build:
|
||
|
stage: build
|
||
|
tags:
|
||
|
- debian
|
||
|
- generic
|
||
|
script:
|
||
|
- echo 'Acquire::http { Proxy "http://rapperswil:3142"; };' > /etc/apt/apt.conf.d/02proxy
|
||
|
- apt-get update -qy
|
||
|
- apt-get install -y dpkg-dev debhelper
|
||
|
- dpkg-buildpackage -us -uc
|
||
|
- mkdir build-artifacts
|
||
|
- mv ../unipoly-mlmmj-ldap-sync* build-artifacts/
|
||
|
artifacts:
|
||
|
paths:
|
||
|
- build-artifacts
|
||
|
|
||
|
# Check built package using lintian.
|
||
|
run-checking:
|
||
|
stage: checking
|
||
|
tags:
|
||
|
- debian
|
||
|
- generic
|
||
|
script:
|
||
|
- echo 'Acquire::http { Proxy "http://rapperswil:3142"; };' > /etc/apt/apt.conf.d/02proxy
|
||
|
- apt-get update -qy
|
||
|
- apt-get install -y lintian
|
||
|
- lintian -i build-artifacts/unipoly-mlmmj-ldap-sync*.changes
|
||
|
|
||
|
# Deploy the built package to rapperswil
|
||
|
.run-deploy:
|
||
|
stage: deploy
|
||
|
variables:
|
||
|
only:
|
||
|
- tags
|
||
|
except:
|
||
|
- /^(?!master).+@/
|
||
|
tags:
|
||
|
- debian
|
||
|
- generic
|
||
|
before_script:
|
||
|
- 'which ssh-agent || (apt-get update -qy && apt-get install openssh-client -y)'
|
||
|
- eval $(ssh-agent -s)
|
||
|
- echo "$CD_SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - > /dev/null
|
||
|
- mkdir -p ~/.ssh
|
||
|
- echo "$CD_SSH_SERVER_HOSTKEYS" > ~/.ssh/known_hosts
|
||
|
- chmod 644 ~/.ssh/known_hosts
|
||
|
script:
|
||
|
- apt-get update -qy
|
||
|
- apt-get install -y dput
|
||
|
- 'echo "$CD_MINIDINSTALL_CONFIG" > ~/.dput.cf'
|
||
|
- 'dput -u gnugen build-artifacts/unipoly-mlmmh-ldap-sync*.changes'
|