Skip to content

Commit

Permalink
remove debug from gitlab ci
Browse files Browse the repository at this point in the history
  • Loading branch information
derchrisuk committed Jul 1, 2017
1 parent 3c80c8a commit 3054f4e
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ before_script:
- TAG=$(git describe --tags)
- echo $TAG > package_version
- cat package_version
- echo $CI_COMMIT_TAG
- echo $CI_COMMIT_REF_NAME

build:osx:
tags:
Expand All @@ -37,7 +35,8 @@ build:osx:
- cd dist/release
- ls
- mv AYAB.dmg AYAB-OSX-${TAG}.dmg
- cd ../.
- ls
- cd ../..

build:linux:
image: python:3.5
Expand Down Expand Up @@ -104,8 +103,6 @@ deploy:s3:
- cd dist/release
- for i in `ls`; do echo "<a href=\"$i\">$i<a/><br /><br />" >> index.html; done
- cd ../../
- echo $CI_COMMIT_TAG
- echo $CI_COMMIT_REF_NAME
script:
- pip install awscli
- aws s3 rm s3://$S3_BUCKET_NAME/ --recursive
Expand All @@ -121,10 +118,8 @@ deploy:github:
url: https://github.com/AllYarnsAreBeautiful/ayab-desktop/releases
image: python:latest
script:
- BRANCH_CI=$(git branch -a --contains tags/${CI_COMMIT_TAG} | grep -v "*" | awk -F'/' {'print $3'})
- echo $BRANCH_CI
- ls -l dist/release
- cd dist/release
- /tools/upload.sh $CI_COMMIT_TAG $BRANCH_CI
- ls
- /tools/upload.sh $CI_COMMIT_TAG python3
only:
- tags

0 comments on commit 3054f4e

Please sign in to comment.