You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by vo...@apache.org on 2019/08/23 15:37:04 UTC

[fineract] branch develop updated (c430184 -> ea076cd)

This is an automated email from the ASF dual-hosted git repository.

vorburger pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git.


    from c430184  link to FAQ from README
     new 2fdd9d1  rm hardcoded system time from .travis.yml (fixes FINERACT-788)
     new ea076cd  put back the TZ (re. FINERACT-788)

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .travis.yml | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)


[fineract] 02/02: put back the TZ (re. FINERACT-788)

Posted by vo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

vorburger pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git

commit ea076cd5c68840a1639d39aefb8e35515ad87a70
Author: Michael Vorburger.ch <mi...@vorburger.ch>
AuthorDate: Thu Aug 22 10:25:08 2019 +0200

    put back the TZ (re. FINERACT-788)
    
    always best to make only mininmal required change
---
 .travis.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.travis.yml b/.travis.yml
index c9eb97e..4f9db8f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -31,6 +31,8 @@ before_install:
   - echo "USE mysql;\nUPDATE user SET password=PASSWORD('mysql') WHERE user='root';\nFLUSH PRIVILEGES;\n" | mysql -u root
   - mysql -u root -pmysql -e 'CREATE DATABASE IF NOT EXISTS `mifosplatform-tenants`;'
   - mysql -u root -pmysql -e 'CREATE DATABASE IF NOT EXISTS `mifostenant-default`;'
+# Hardcoding the time zone is a temporary fix for https://issues.apache.org/jira/browse/FINERACT-723
+  - export TZ=Asia/Kolkata
 
 # https://docs.travis-ci.com/user/languages/java/#caching
 before_cache:


[fineract] 01/02: rm hardcoded system time from .travis.yml (fixes FINERACT-788)

Posted by vo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

vorburger pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git

commit 2fdd9d14b614df14daf3aaa3553e180a92e14a48
Author: Michael Vorburger ⛑️ <mi...@vorburger.ch>
AuthorDate: Thu Aug 22 09:41:11 2019 +0200

    rm hardcoded system time from .travis.yml (fixes FINERACT-788)
---
 .travis.yml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 5f009d0..c9eb97e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -27,14 +27,10 @@ jdk:
 services:
   - mysql
 
-# Hardcoding system time as a temporary fix for running buggy test cases
 before_install:
   - echo "USE mysql;\nUPDATE user SET password=PASSWORD('mysql') WHERE user='root';\nFLUSH PRIVILEGES;\n" | mysql -u root
   - mysql -u root -pmysql -e 'CREATE DATABASE IF NOT EXISTS `mifosplatform-tenants`;'
   - mysql -u root -pmysql -e 'CREATE DATABASE IF NOT EXISTS `mifostenant-default`;'
-  - export TZ=Asia/Kolkata
-  - sudo service ntp stop
-  - sudo date --set="23 February 2019 01:02:03"
 
 # https://docs.travis-ci.com/user/languages/java/#caching
 before_cache: