| | |
| | | - git config --local user.name "Open Identity Platform Community" && git config --local user.email "open-identity-platform-opendj@googlegroups.com" |
| | | - git checkout -f $TRAVIS_BRANCH |
| | | - git tag -f $git_version && git tag -d $git_version |
| | | - mvn -q -B -DreleaseVersion="$git_version" -DignoreSnapshots=true -DpushChanges=false -DscmCommentPrefix="[ci skip] $git_version_last->$git_version " -DskipTests -Darguments=-DskipTests -Dresume=false -P distribution release:prepare |
| | | - mvn -B -DtagNameFormat="$git_version" -DreleaseVersion="$git_version" -DignoreSnapshots=true -DpushChanges=false -DscmCommentPrefix="[ci skip] $git_version_last->$git_version " -DskipTests -Darguments=-DskipTests -Dresume=false -P distribution release:prepare |
| | | - git push --quiet --force https://$GITHUBKEY@github.com/$TRAVIS_REPO_SLUG.git >/dev/null 2>&1 |
| | | - git push --quiet --force https://$GITHUBKEY@github.com/$TRAVIS_REPO_SLUG.git $git_version >/dev/null 2>&1 |
| | | deploy: |
| | |
| | | target_commitish: $(git rev-list -n 1 $git_version) |
| | | tag_name: $git_version |
| | | name: $git_version |
| | | body: "compare: $(git rev-list -n 1 $git_version_last)...$(git rev-list -n 1 $git_version)" |
| | | release_notes: "compare: $(git rev-list -n 1 $git_version_last)...$(git rev-list -n 1 $git_version)" |
| | | api_key: |
| | | secure: bprK7kiogA+nA4TuYU7BHHIPasg2Ve7dG/eZRQ+mJpH2y6GXFBqoEpN2AQECrJ5IgVQZ9WyBc+/PXhjh/VYrg3bvU9lE2zTnkQa5kiPFGnC5cOmqO2dSdUjiBcm3yBO9J3pL//Qsr8g7fv9g5580yMW/NYMs0R70S5ystqjJFSFQHXLkWJBzXQnIyMqjPNsndmqR9lnqX690u298z9H56pNrZqK851NVjTX9WKIoWlVezCSp3nwvAD5tW+p1A0Sy/6kPheYyudEHvHO5zUe33vh3lxB/qqXzIszlEPvIzzcig/ElxTCQ+4eWL34MlGLUzeJ8DdR7JshIPkTrAQ9i5nbOIP0NLu5wfNh642Sl4diGqa+7ioAmhIQuQmBJcOb0l9pP01fLVmgJoPVLGctWpklB9FdNCu96EtHmqj6FmsQzSTpmkfhCjRrgPHQYTZNcl25xdN6GSYZpiP2fYSmp06Wz2mi2OO2gvwjU2iX2b8j/koJ8kWQHrCYamTKbu4X08Vd+lE3EupTBfBzmiPiu8pC5PRi+nmilKdg40lsga++HB3IRRoPYhULo29Yfh6kMmWrP4Pn7RFOyI0Jm5NhLlZW2A5Q+FpEr8qyiLV1eC5RxMlAdaqassz2aWgwxrJC2taF0gUnZbg6w0xa5O0UAl0VAAGAJb2cXl9yJDCkYL18= |
| | | skip_cleanup: true |
| | |
| | | - git push --quiet --force https://$GITHUBKEY@github.com/$TRAVIS_REPO_SLUG.wiki.git $git_version >/dev/null 2>&1 |
| | | - cd $TRAVIS_BUILD_DIR |
| | | - echo 'build and push Docker' |
| | | - docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD" |
| | | - docker build ./opendj-packages/opendj-docker -t $DOCKER_USERNAME/opendj -t $DOCKER_USERNAME/opendj:$git_version |
| | | - docker push $DOCKER_USERNAME/opendj:$git_version |
| | | - docker push $DOCKER_USERNAME/opendj |
| | | - echo "$DOCKER_PASSWORD" | docker login -u "openidentityplatformcommunity" --password-stdin |
| | | - docker build ./opendj-packages/opendj-docker -t openidentityplatform/opendj -t openidentityplatform/opendj:$git_version |
| | | - docker push openidentityplatform/opendj:$git_version |
| | | - docker push openidentityplatform/opendj |
| | | - echo 'build and push Github Docker' |
| | | - docker login docker.pkg.github.com -u "$GITHUB_USERNAME" -p "$GITHUB_PASSWORD" |
| | | - echo "$GITHUBKEY" | docker login -u "Open Identity Platform Community" docker.pkg.github.com --password-stdin |
| | | - docker build ./opendj-packages/opendj-docker -t docker.pkg.github.com/openidentityplatform/opendj/opendj -t docker.pkg.github.com/openidentityplatform/opendj/opendj:$git_version |
| | | - #docker push docker.pkg.github.com/openidentityplatform/opendj/opendj:$git_version |
| | | - #docker push docker.pkg.github.com/openidentityplatform/opendj/opendj |
| | | - docker push docker.pkg.github.com/openidentityplatform/opendj/opendj:$git_version |
| | | - docker push docker.pkg.github.com/openidentityplatform/opendj/opendj |
| | | - os: linux |
| | | jdk: oraclejdk11 |
| | | - os: linux |
| | |
| | | before_install: |
| | | - date -u |
| | | - uname -a |
| | | - if [[ "$TRAVIS_OS_NAME" == "osx" ]] ; then brew install rpm && brew cask install wine-stable; else sudo apt-get install -y rpm wine; fi |
| | | - if [[ "$TRAVIS_OS_NAME" == "osx" ]] ; then brew install rpm && brew cask install wine-stable; else sudo apt-get install -y rpm && sudo dpkg --add-architecture i386 && wget -qO - https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add - && sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ xenial main' && sudo apt update && sudo apt install --install-recommends winehq-stable ; fi |
| | | - git fetch -t |
| | | - export git_version_last="$(git describe --abbrev=0 --tags)" |
| | | - export git_version="$(echo $git_version_last | awk -F . '{ printf "%d.%d.%d", $1,$2,$3 + 1}')" |