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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer <jacob@gitlab.com>2017-12-07 18:40:46 +0300
committerJacob Vosmaer <jacob@gitlab.com>2017-12-07 18:40:46 +0300
commit1c6607bc2313a7146ff2be32d4d5114344eb99bb (patch)
treee2dd04cc83b7dcd02b9e4cc7e8604d2b8af07251
parent164adab67e9f28b7ece915996c3dc5ca130e646d (diff)
Remove broken 'package' job, and 'publish'
-rw-r--r--.gitlab-ci.yml29
1 files changed, 0 insertions, 29 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index cc05018c3..739dab504 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,7 +4,6 @@ stages:
- build_images
- build
- test
- - package
- publish
verify:
@@ -60,34 +59,6 @@ cover:
- _build/cover/all.html
expire_in: 1 week
-package:
- stage: package
- only:
- - tags
- script:
- - GOOS=linux GOARCH=amd64 make clean package
- - ls -l # Want to see permissions as they went into the .deb
- - dpkg -e *.deb
- - cat DEBIAN/control
- - cat DEBIAN/md5sums
- - rm -rf DEBIAN
- artifacts:
- paths:
- - ./*.deb
-
-publish:
- stage: publish
- only:
- - tags
- variables:
- GIT_STRATEGY: none
- script:
- - gem install package_cloud
- - ls -lh *.deb
- - shasum -a256 *.deb
- - package_cloud push $PACKAGECLOUD_REPO *.deb --url=https://packages.gitlab.com
- allow_failure: true
-
# Create a code quality report
codequality:
image: docker:latest