Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina-Ubuntu-PPA.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2021-05-25 17:23:40 +0300
committerAntenore Gatta <antenore@simbiosi.org>2021-05-25 17:23:40 +0300
commitcb0ed8c332eb6423a5c20569c876b59eab38f716 (patch)
tree227f0f2b3691c24f5ebefaf7a2c1f97ed9380a3b
parentf43501238bae1784fd8a5b29ecea259d5a5423a3 (diff)
cleaning up-a
-rw-r--r--.gitlab-ci.yml43
1 files changed, 0 insertions, 43 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
deleted file mode 100644
index 09d65c4..0000000
--- a/.gitlab-ci.yml
+++ /dev/null
@@ -1,43 +0,0 @@
----
-image: registry.gitlab.com/remmina/remmina/ubuntu:18.04
-
-variables:
- GIT_SUBMODULE_STRATEGY: recursive
- DEB_PPA: ppa:remmina-ppa-team/remmina-next
- FREERDP_DAILY_PPA: ppa:remmina-ppa-team/remmina-next-daily
- DEBFULLNAME: Remmina CI
- DEBEMAIL: admin@remmina.org
-
-stages:
- - build
-
-ppa build:
- stage: build
- before_script:
- - apt-get update -qq
- - apt-get install -y -qq devscripts
- script:
- - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
- - eval $(ssh-agent -s)
- - echo "$SSH_PRIVATE_KEY_R" | tr -d '\r' | ssh-add - > /dev/null
- - mkdir -p ~/.ssh
- - chmod 700 ~/.ssh
- - ssh-keyscan gitlab.com >> ~/.ssh/known_hosts
- - chmod 644 ~/.ssh/known_hosts
- - git config --global user.name "Antenore Gatta"
- - git config --global user.email "antenore@simbiosi.org"
- - git clone git@gitlab.com:Remmina/Remmina.git Remmina
- - cd Remmina
- - export TAG="$(git describe --tags --abbrev=0 | tail -1 | tr -d 'v')"
- - cd -
- - git clone git@gitlab.com:Remmina/Remmina-Ubuntu-PPA.git Remmina-Ubuntu-PPA
- - cd Remmina-Ubuntu-PPA
- - grep ${TAG}-1+ppa1.1 debian/changelog && exit
- - dch -v ${TAG}-1+ppa1.1 "Upstream release"
- - dch -r ''
- - git commit -s -m "Upstream release" -a
- - git push origin master
- only:
- - triggers
- - web
- when: on_success