Browse Source

clean CI config

main
Distopico Vegan 5 years ago
parent
commit
c36573e3f6
1 changed files with 9 additions and 25 deletions
  1. +9
    -25
      .gitlab-ci.yml

+ 9
- 25
.gitlab-ci.yml View File

@ -42,34 +42,30 @@ lintAll:
except:
- master
script:
- echo ""
#- ./gradlew --console=plain lint
#- ./gradlew --console=plain checkstyle
- ./gradlew --console=plain lint
- ./gradlew --console=plain checkstyle
lintRelease:
stage: test
only:
- master
script:
- echo ""
#- ./gradlew --console=plain lintRelease
#- ./gradlew --console=plain checkstyle
- ./gradlew --console=plain lintRelease
- ./gradlew --console=plain checkstyle
testAll:
stage: test
except:
- master
script:
- echo ""
#- ./gradlew --console=plain test
- ./gradlew --console=plain test
testRelease:
stage: test
only:
- master
script:
- echo ""
#- ./gradlew --console=plain testReleaseUnitTest
- ./gradlew --console=plain testReleaseUnitTest
buildDebug:
stage: build
@ -87,8 +83,7 @@ buildRelease:
only:
- master
script:
- echo ""
#- ./gradlew assembleRelease
- ./gradlew assembleRelease
artifacts:
expire_in: 1 week
paths:
@ -102,22 +97,11 @@ release:
- wget --quiet --output-document=/tmp/nvm-install.sh https://raw.githubusercontent.com/creationix/nvm/v0.33.6/install.sh
- bash /tmp/nvm-install.sh
- export NVM_DIR="$HOME/.nvm" &&. "$NVM_DIR/nvm.sh" && nvm install 8
#- eval $(ssh-agent -s)
#- echo "$GIT_SSH_KEY" | tr -d '\r' | ssh-add - > /dev/null
#- ssh-add <(echo "$GIT_SSH_KEY")
#- mkdir -p ~/.ssh && ssh-keyscan $GITLAB_URL >> ~/.ssh/known_hosts
#- git config --global user.email $GIT_AUTHOR_EMAIL
#- git config --global user.name $GIT_AUTHOR_NAME
- npm install -g semantic-release @semantic-release/commit-analyzer @semantic-release/release-notes-generator @semantic-release/changelog @semantic-release/exec @semantic-release/git @semantic-release/gitlab
cache: {}
script:
- npm install -g semantic-release @semantic-release/commit-analyzer @semantic-release/release-notes-generator @semantic-release/changelog @semantic-release/exec @semantic-release/git @semantic-release/gitlab
- semantic-release
- echo git show --summary
- git checkout develop
- git rebase master
- git show --summary
- git fetch
- git checkout develop
- git rebase origin/master
- git show --summary
#- git push git@${GITLAB_URL}:${CI_PROJECT_PATH}.git develop
- git push https://${GIT_CREDENTIALS}@${GITLAB_URL}/${CI_PROJECT_PATH}.git develop

Loading…
Cancel
Save