This is an automated email from the ASF dual-hosted git repository.
cdutz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-training.git
The following commit(s) were added to refs/heads/master by this push:
new 95a2f87 Commented out the cleanup job, as it's not needed in
single-module projects ...
95a2f87 is described below
commit 95a2f876c63151054b5bf1f4622560b18265de44
Author: Christofer Dutz <[email protected]>
AuthorDate: Wed Mar 20 15:49:55 2019 +0100
Commented out the cleanup job, as it's not needed in single-module projects
...
---
Jenkinsfile | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index f7804b8..d1b3344 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -78,10 +78,13 @@ pipeline {
echo 'Staging Site'
// Build a directory containing the aggregated website.
sh 'mvn site:stage'
+
+ /* Enable this as soon as we have multiple modules
// Make sure the script is executable.
sh 'chmod +x tools/clean-site.sh'
- // Remove some redundant resources, which shouldn't be
required.
+ // Remove some redundant resources, which shouldn'tbe required.
sh 'tools/clean-site.sh'
+ */
}
}