Skip to content

Commit

Permalink
Merge pull request #20 from eea/develop
Browse files Browse the repository at this point in the history
Release
  • Loading branch information
avoinea authored Nov 1, 2021
2 parents dda2363 + 7ffbd09 commit e399de6
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ pipeline {
def nodeJS = tool 'NodeJS11';
withSonarQubeEnv('Sonarqube') {
sh '''sed -i "s|/plone/instance/src/$GIT_NAME|$(pwd)|g" coverage.xml'''
sh "export PATH=$PATH:${scannerHome}/bin:${nodeJS}/bin; sonar-scanner -Dsonar.python.xunit.skipDetails=true -Dsonar.python.xunit.reportPath=xunit-reports/*.xml -Dsonar.python.coverage.reportPath=coverage.xml -Dsonar.sources=./eea -Dsonar.projectKey=$GIT_NAME-$BRANCH_NAME -Dsonar.projectVersion=$BRANCH_NAME-$BUILD_NUMBER"
sh "export PATH=$PATH:${scannerHome}/bin:${nodeJS}/bin; sonar-scanner -Dsonar.python.xunit.skipDetails=true -Dsonar.python.xunit.reportPath=xunit-reports/*.xml -Dsonar.python.coverage.reportPaths=coverage.xml -Dsonar.sources=./eea -Dsonar.projectKey=$GIT_NAME-$BRANCH_NAME -Dsonar.projectVersion=$BRANCH_NAME-$BUILD_NUMBER"
sh '''try=2; while [ \$try -gt 0 ]; do curl -s -XPOST -u "${SONAR_AUTH_TOKEN}:" "${SONAR_HOST_URL}api/project_tags/set?project=${GIT_NAME}-${BRANCH_NAME}&tags=${SONARQUBE_TAGS},${BRANCH_NAME}" > set_tags_result; if [ \$(grep -ic error set_tags_result ) -eq 0 ]; then try=0; else cat set_tags_result; echo "... Will retry"; sleep 60; try=\$(( \$try - 1 )); fi; done'''
}
}
Expand Down
5 changes: 5 additions & 0 deletions docs/HISTORY.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

11.3 - (2021-11-01)
---------------------------
* Change: Explicitly load zcml of dependencies, instead of using includeDependencies
[avoinea]

11.2 - (2020-02-28)
--------------------------
* Change: patch slick.grid.js to use dispatch.call instead of handle.call
Expand Down
2 changes: 1 addition & 1 deletion eea/jquery/plone.zcml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns:zcml="http://namespaces.zope.org/zcml"
i18n_domain="eea">

<includeDependencies package="." />
<include package="collective.js.jqueryui" />
<include zcml:condition="have plone-5"
file="profiles.zcml" />
<include zcml:condition="not-have plone-5"
Expand Down
2 changes: 1 addition & 1 deletion eea/jquery/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
11.2
11.3

0 comments on commit e399de6

Please sign in to comment.