File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -64,12 +64,8 @@ cache:
6464 - $MAVEN_CFG
6565
6666before_install :
67- # The update_project_version is done before deployment to validate that the change of project files does not break installation
67+ # The update_project_version.sh is done before deployment to validate that the change of project files does not break installation
6868 - bash .travis/update_project_version.sh
69- -
git config --global user.email "[email protected] " 70- - git config --global user.name "${UTPLSQL_BUILD_USER_NAME}"
71- - git remote rm origin
72- - git remote add origin https://${github_api_token}@github.com/${UTPLSQL_REPO}
7369 # download latest utPLSQL release
7470 # - curl -LOk $(curl --silent https://api.github.com/repos/utPLSQL/utPLSQL/releases/latest | awk '/browser_download_url/ { print $2 }' | grep ".zip" | sed 's/"//g')
7571 - git clone --depth=1 --branch=${SELFTESTING_BRANCH:-master} https://github.com/utPLSQL/utPLSQL.git $UTPLSQL_DIR
@@ -117,6 +113,12 @@ jobs:
117113 before_script : skip
118114 script :
119115 - if [[ ($TRAVIS_BRANCH == develop) && ($TRAVIS_PULL_REQUEST == false) ]]; then bash .travis/trigger_travis.sh $TRAVIS_ACCESS_TOKEN; fi
116+ - # The update_project_version.sh needs to be done before pushing changes to develop branch
117+ - bash .travis/update_project_version.sh
118+ -
git config --global user.email "[email protected] " 119+ - git config --global user.name "${UTPLSQL_BUILD_USER_NAME}"
120+ - git remote rm origin
121+ - git remote add origin https://${github_api_token}@github.com/${UTPLSQL_REPO}
120122 - if [[ ! $TRAVIS_TAG ]]; then bash .travis/push_release_version.sh; fi
121123 - bash .travis/build_docs.sh
122124 - bash .travis/push_docs_to_gh_pages.sh
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ create or replace package ut_utils authid definer is
2121 *
2222 */
2323
24- gc_version constant varchar2(50) := 'v3.1.2.2016 -develop';
24+ gc_version constant varchar2(50) := 'v3.1.2.2041 -develop';
2525
2626 /* Constants: Event names */
2727 subtype t_event_name is varchar2(30);
You can’t perform that action at this time.
0 commit comments