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: except:
- master - master
script: script:
- echo ""
#- ./gradlew --console=plain lint
#- ./gradlew --console=plain checkstyle
- ./gradlew --console=plain lint
- ./gradlew --console=plain checkstyle
lintRelease: lintRelease:
stage: test stage: test
only: only:
- master - master
script: script:
- echo ""
#- ./gradlew --console=plain lintRelease
#- ./gradlew --console=plain checkstyle
- ./gradlew --console=plain lintRelease
- ./gradlew --console=plain checkstyle
testAll: testAll:
stage: test stage: test
except: except:
- master - master
script: script:
- echo ""
#- ./gradlew --console=plain test
- ./gradlew --console=plain test
testRelease: testRelease:
stage: test stage: test
only: only:
- master - master
script: script:
- echo ""
#- ./gradlew --console=plain testReleaseUnitTest
- ./gradlew --console=plain testReleaseUnitTest
buildDebug: buildDebug:
stage: build stage: build
@ -87,8 +83,7 @@ buildRelease:
only: only:
- master - master
script: script:
- echo ""
#- ./gradlew assembleRelease
- ./gradlew assembleRelease
artifacts: artifacts:
expire_in: 1 week expire_in: 1 week
paths: 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 - wget --quiet --output-document=/tmp/nvm-install.sh https://raw.githubusercontent.com/creationix/nvm/v0.33.6/install.sh
- bash /tmp/nvm-install.sh - bash /tmp/nvm-install.sh
- export NVM_DIR="$HOME/.nvm" &&. "$NVM_DIR/nvm.sh" && nvm install 8 - 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: {} cache: {}
script: 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 - semantic-release
- echo git show --summary
- git checkout develop
- git rebase master
- git show --summary
- git fetch - git fetch
- git checkout develop
- git rebase origin/master - 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 - git push https://${GIT_CREDENTIALS}@${GITLAB_URL}/${CI_PROJECT_PATH}.git develop

Loading…
Cancel
Save