You are viewing a plain text version of this content. The canonical link for it is here.
Posted to infrastructure-issues@apache.org by "Joe Schaefer (JIRA)" <ji...@apache.org> on 2013/11/20 04:31:24 UTC

[jira] [Commented] (INFRA-6350) Create periodically executed job on buildbot to update draft docs of Apache Struts project

    [ https://issues.apache.org/jira/browse/INFRA-6350?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13827287#comment-13827287 ] 

Joe Schaefer commented on INFRA-6350:
-------------------------------------

What is the current status of this issue?

> Create periodically executed job on buildbot to update draft docs of Apache Struts project
> ------------------------------------------------------------------------------------------
>
>                 Key: INFRA-6350
>                 URL: https://issues.apache.org/jira/browse/INFRA-6350
>             Project: Infrastructure
>          Issue Type: Task
>      Security Level: public(Regular issues) 
>          Components: Buildbot, CMS, SvnPubSub
>            Reporter: Lukasz Lenart
>            Priority: Minor
>
> I'm using the below script to manually update draft docs (development version of documentation). I would like to perform this task automatically by buildbot.
> {noformat}
> #!/bin/sh
> # This script is used to periodically update Development version of docs - Draft docs
> # Grab docs from Confluence
> mvn clean package -Pupdate-draft-docs
> # The docs are available here http://struts.apache.org/development/2.x/docs/
> svn co https://svn.apache.org/repos/infra/websites/production/struts/content/development/2.x/docs target/struts2-draft-docs --no-auth-cache
> # Remove the old docs
> rm -R target/struts2-draft-docs/*
> # Move the new docs
> mv target/cwiki/WW/docs/* target/struts2-draft-docs/
> cd target/struts2-draft-docs
> touch PLACEHOLDER
> # Check for changes
> DIFF=`svn status`
> if [ -n "$DIFF" ]; then
>     # echo "Changes detected - add and commit"
>     # Add all the file
>     svn add ./ --force
>     # Remove already removed files
>     svn status | grep '^\!' | sed 's/! *//' | awk 'BEGIN {FS="\t"};{print "\""$1"\""}' | xargs svn del --force
>     # Commit changes
>     svn commit -m "Updates draft docs" --no-auth-cache
> fi
> cd ../..
> # Cleanup
> mvn clean
> # echo "Success!"
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.1#6144)