@eeacms/volto-slate-footnote 4.0.3 → 4.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -1
- package/Jenkinsfile +3 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,9 +4,14 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
#### [4.0.4](https://github.com/eea/volto-slate-footnote/compare/4.0.3...4.0.4)
|
|
8
|
+
|
|
9
|
+
|
|
7
10
|
#### [4.0.3](https://github.com/eea/volto-slate-footnote/compare/4.0.2...4.0.3)
|
|
8
11
|
|
|
9
|
-
|
|
12
|
+
> 18 December 2021
|
|
13
|
+
|
|
14
|
+
- Add SonarQube badges [`#29`](https://github.com/eea/volto-slate-footnote/pull/29)
|
|
10
15
|
- Refs #142010 - Optimize Volto-addons gitflow pipelines [`1081079`](https://github.com/eea/volto-slate-footnote/commit/1081079444f5ac806e9d56765c4ccf0b9e415a73)
|
|
11
16
|
|
|
12
17
|
#### [4.0.2](https://github.com/eea/volto-slate-footnote/compare/4.0.1...4.0.2)
|
package/Jenkinsfile
CHANGED
|
@@ -124,7 +124,7 @@ pipeline {
|
|
|
124
124
|
node(label: 'docker') {
|
|
125
125
|
script {
|
|
126
126
|
try {
|
|
127
|
-
sh '''docker pull plone; docker run -d --name="$BUILD_TAG-plone" -e SITE="Plone" -e PROFILES="profile-plone.restapi:blocks" plone fg'''
|
|
127
|
+
sh '''docker pull plone; docker run -d --rm --name="$BUILD_TAG-plone" -e SITE="Plone" -e PROFILES="profile-plone.restapi:blocks" plone fg'''
|
|
128
128
|
sh '''docker pull plone/volto-addon-ci; docker run -i --name="$BUILD_TAG-cypress" --link $BUILD_TAG-plone:plone -e NAMESPACE="$NAMESPACE" -e GIT_NAME=$GIT_NAME -e GIT_BRANCH="$BRANCH_NAME" -e GIT_CHANGE_ID="$CHANGE_ID" -e DEPENDENCIES="$DEPENDENCIES" plone/volto-addon-ci cypress'''
|
|
129
129
|
} finally {
|
|
130
130
|
try {
|
|
@@ -142,7 +142,8 @@ pipeline {
|
|
|
142
142
|
reportName: 'CypressCoverage',
|
|
143
143
|
reportTitles: 'Integration Tests Code Coverage'])
|
|
144
144
|
}
|
|
145
|
-
|
|
145
|
+
sh '''touch empty_file; for ok_test in $(grep -E 'file=.*failures="0"' $(grep 'testsuites .*failures="0"' $(find cypress-results -name *.xml) empty_file | awk -F: '{print $1}') empty_file | sed 's/.* file="\\(.*\\)" time.*/\\1/' | sed 's#^cypress/integration/##g' | sed 's#^../../../node_modules/@eeacms/##g'); do rm -f cypress-reports/videos/$ok_test.mp4; rm -f cypress-reports/$ok_test.mp4; done'''
|
|
146
|
+
archiveArtifacts artifacts: 'cypress-reports/**/*.mp4', fingerprint: true, allowEmptyArchive: true
|
|
146
147
|
stash name: "cypress-coverage", includes: "cypress-coverage/**", allowEmpty: true
|
|
147
148
|
}
|
|
148
149
|
finally {
|