Commit ba115570fa13820728806c0500bd8a5cb81d609b
1 parent
e660904e
Exists in
staging
and in
4 other branches
Fix submodules url
Showing
2 changed files
with
19 additions
and
14 deletions
Show diff stats
.gitmodules
1 | [submodule "plugins/pairwise"] | 1 | [submodule "plugins/pairwise"] |
2 | path = plugins/pairwise | 2 | path = plugins/pairwise |
3 | - url = ./../../noosfero-plugins/pairwise.git | 3 | + url = https://softwarepublico.gov.br/gitlab/noosfero-plugins/pairwise.git |
4 | [submodule "plugins/proposals_discussion"] | 4 | [submodule "plugins/proposals_discussion"] |
5 | path = plugins/proposals_discussion | 5 | path = plugins/proposals_discussion |
6 | - url = ./../../noosfero-plugins/proposals_discussion.git | 6 | + url = https://softwarepublico.gov.br/gitlab/noosfero-plugins/proposals_discussion.git |
7 | [submodule "plugins/gamification"] | 7 | [submodule "plugins/gamification"] |
8 | path = plugins/gamification | 8 | path = plugins/gamification |
9 | - url = ./../../noosfero-plugins/gamification.git | 9 | + url = https://softwarepublico.gov.br/gitlab/noosfero-plugins/gamification.git |
10 | [submodule "plugins/notification"] | 10 | [submodule "plugins/notification"] |
11 | path = plugins/notification | 11 | path = plugins/notification |
12 | - url = ./../../noosfero-plugins/notification.git | 12 | + url = https://softwarepublico.gov.br/gitlab/noosfero-plugins/notification.git |
13 | [submodule "plugins/email_article"] | 13 | [submodule "plugins/email_article"] |
14 | path = plugins/email_article | 14 | path = plugins/email_article |
15 | - url = ./../../noosfero-plugins/email_article.git | 15 | + url = https://softwarepublico.gov.br/gitlab/noosfero-plugins/email_article.git |
16 | [submodule "plugins/gravatar_provider"] | 16 | [submodule "plugins/gravatar_provider"] |
17 | path = plugins/gravatar_provider | 17 | path = plugins/gravatar_provider |
18 | - url = ./../../noosfero-plugins/gravatar-provider.git | 18 | + url = https://softwarepublico.gov.br/gitlab/noosfero-plugins/gravatar-provider.git |
19 | [submodule "plugins/juventude"] | 19 | [submodule "plugins/juventude"] |
20 | path = plugins/juventude | 20 | path = plugins/juventude |
21 | - url = ./../../noosfero-plugins/juventude.git | 21 | + url = https://softwarepublico.gov.br/gitlab/noosfero-plugins/juventude.git |
22 | [submodule "plugins/dialoga"] | 22 | [submodule "plugins/dialoga"] |
23 | path = plugins/dialoga | 23 | path = plugins/dialoga |
24 | - url = ./../../noosfero-plugins/dialoga-plugin.git | 24 | + url = https://softwarepublico.gov.br/gitlab/noosfero-plugins/dialoga-plugin.git |
25 | [submodule "rest-clients/confjuvapp"] | 25 | [submodule "rest-clients/confjuvapp"] |
26 | path = rest-clients/confjuvapp | 26 | path = rest-clients/confjuvapp |
27 | - url = ./../../noosfero-apps/confjuvapp.git | 27 | + url = https://softwarepublico.gov.br/gitlab/noosfero-apps/confjuvapp.git |
28 | [submodule "rest-clients/proposal-app"] | 28 | [submodule "rest-clients/proposal-app"] |
29 | path = rest-clients/proposal-app | 29 | path = rest-clients/proposal-app |
30 | - url = ./../../noosfero-apps/proposal-app.git | 30 | + url = https://softwarepublico.gov.br/gitlab/noosfero-apps/proposal-app.git |
31 | [submodule "plugins/serpro_captcha"] | 31 | [submodule "plugins/serpro_captcha"] |
32 | path = plugins/serpro_captcha | 32 | path = plugins/serpro_captcha |
33 | - url = ./../../noosfero-plugins/serpro_captcha.git | 33 | + url = https://softwarepublico.gov.br/gitlab/noosfero-plugins/serpro_captcha.git |
34 | [submodule "plugins/recaptcha"] | 34 | [submodule "plugins/recaptcha"] |
35 | path = plugins/recaptcha | 35 | path = plugins/recaptcha |
36 | - url = ./../../noosfero-plugins/recaptcha.git | 36 | + url = https://softwarepublico.gov.br/gitlab/noosfero-plugins/recaptcha.git |
37 | [submodule "plugins/insight"] | 37 | [submodule "plugins/insight"] |
38 | path = plugins/insight | 38 | path = plugins/insight |
39 | - url = ./../../noosfero-plugins/insight.git | 39 | + url = https://softwarepublico.gov.br/gitlab/noosfero-plugins/insight.git |
40 | [submodule "plugins/community_hub"] | 40 | [submodule "plugins/community_hub"] |
41 | path = plugins/community_hub | 41 | path = plugins/community_hub |
42 | - url = ./../../noosfero-plugins/community_hub.git | 42 | + url = https://softwarepublico.gov.br/gitlab/noosfero-plugins/community_hub.git |
.travis.yml
@@ -24,10 +24,15 @@ addons: | @@ -24,10 +24,15 @@ addons: | ||
24 | - libsqlite3-dev | 24 | - libsqlite3-dev |
25 | - libxslt1-dev | 25 | - libxslt1-dev |
26 | 26 | ||
27 | +git: | ||
28 | + submodules: false | ||
29 | + | ||
27 | # workaround for https://github.com/travis-ci/travis-ci/issues/4536 | 30 | # workaround for https://github.com/travis-ci/travis-ci/issues/4536 |
28 | before_install: | 31 | before_install: |
29 | - export GEM_HOME=$PWD/vendor/bundle/ruby/2.2.0 | 32 | - export GEM_HOME=$PWD/vendor/bundle/ruby/2.2.0 |
30 | - gem install bundler | 33 | - gem install bundler |
34 | + - sed -i 's/softwarepublico.gov.br\/gitlab/github.com/' .gitmodules | ||
35 | + - git submodule update --init --recursive | ||
31 | cache: bundler | 36 | cache: bundler |
32 | 37 | ||
33 | before_script: | 38 | before_script: |