Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2825cbf

Browse files
committed
Merge branch 'develop' into feature/parameters_for_before_after_annotations
2 parents 1d65abf + a154b1d commit 2825cbf

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

.travis.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,8 @@ cache:
6464
- $MAVEN_CFG
6565

6666
before_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

source/core/ut_utils.pks

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)