File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -102,8 +102,8 @@ pipeline {
102
102
always {
103
103
// Dumps to analyze later
104
104
sh ' mkdir -p debug'
105
- sh ' docker-compose logs fullstack-sqlite | debug/docker_fullstack_sqlite.log'
106
- sh ' docker-compose logs db | debug/docker_db.log'
105
+ sh ' docker-compose logs fullstack-sqlite > debug/docker_fullstack_sqlite.log'
106
+ sh ' docker-compose logs db > debug/docker_db.log'
107
107
// Cypress videos and screenshot artifacts
108
108
dir(path : ' test/results' ) {
109
109
archiveArtifacts allowEmptyArchive : true , artifacts : ' **/*' , excludes : ' **/*.xml'
@@ -128,8 +128,8 @@ pipeline {
128
128
always {
129
129
// Dumps to analyze later
130
130
sh ' mkdir -p debug'
131
- sh ' docker-compose logs fullstack-mysql | debug/docker_fullstack_mysql.log'
132
- sh ' docker-compose logs db | debug/docker_db.log'
131
+ sh ' docker-compose logs fullstack-mysql > debug/docker_fullstack_mysql.log'
132
+ sh ' docker-compose logs db > debug/docker_db.log'
133
133
// Cypress videos and screenshot artifacts
134
134
dir(path : ' test/results' ) {
135
135
archiveArtifacts allowEmptyArchive : true , artifacts : ' **/*' , excludes : ' **/*.xml'
You can’t perform that action at this time.
0 commit comments