From bd0094c806e70eeac53640a0aa085f7278dd9a30 Mon Sep 17 00:00:00 2001 From: Christian Date: Fri, 14 Oct 2022 16:10:00 +0200 Subject: [PATCH 1/4] Jenkins Trigger --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 30132b9ccd..eaf6a58f82 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ [![Jenkins tests](https://img.shields.io/jenkins/tests?compact_message&jobUrl=http%3A%2F%2Fapollo.cs.man.ac.uk%3A8080%2Fjob%2FIntegration%2520Tests%2Fjob%2Fmain%2F&label=integration%20tests)](http://apollo.cs.man.ac.uk:8080/blue/organizations/jenkins/Integration%20Tests/activity/) - # IntegrationTests Integration Tests unified over all repositories From 137bf6a68a20e0b89d2d1e7a9676c1eca4484961 Mon Sep 17 00:00:00 2001 From: "Christian Y. Brenninkmeijer" Date: Mon, 17 Oct 2022 15:17:56 +0100 Subject: [PATCH 2/4] reduce report depth --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index d57150f9c9..7538bdbe1b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -273,7 +273,7 @@ pipeline { } stage('Reports') { steps { - sh 'find . -maxdepth 3 -type f -wholename "*/reports/*" -print -exec cat \\{\\} \\;' + sh 'find . -maxdepth 2 -type f -wholename "*/reports/*" -print -exec cat \\{\\} \\;' run_in_pyenv('python -m spinn_utilities.executable_finder') } } From 402399a7bd78b28cad3c3b2001bb4b29bb4a8c1e Mon Sep 17 00:00:00 2001 From: "Christian Y. Brenninkmeijer" Date: Tue, 18 Oct 2022 06:41:59 +0100 Subject: [PATCH 3/4] increase report depth --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7538bdbe1b..d57150f9c9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -273,7 +273,7 @@ pipeline { } stage('Reports') { steps { - sh 'find . -maxdepth 2 -type f -wholename "*/reports/*" -print -exec cat \\{\\} \\;' + sh 'find . -maxdepth 3 -type f -wholename "*/reports/*" -print -exec cat \\{\\} \\;' run_in_pyenv('python -m spinn_utilities.executable_finder') } } From 980ddc941cbc23a04c5c55d2a42b457e5eff0280 Mon Sep 17 00:00:00 2001 From: "Christian Y. Brenninkmeijer" Date: Tue, 18 Oct 2022 11:38:56 +0100 Subject: [PATCH 4/4] jenkins write to global_reports --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index d57150f9c9..3a4f3e0553 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -273,7 +273,7 @@ pipeline { } stage('Reports') { steps { - sh 'find . -maxdepth 3 -type f -wholename "*/reports/*" -print -exec cat \\{\\} \\;' + sh 'find . -maxdepth 3 -type f -wholename "*/global_reports/*" -print -exec cat \\{\\} \\;' run_in_pyenv('python -m spinn_utilities.executable_finder') } }