You are viewing a plain text version of this content. The canonical link for it is here.
Posted to infrastructure-issues@apache.org by "Lukasz Lenart (JIRA)" <ji...@apache.org> on 2013/07/31 10:27:52 UTC

[jira] [Updated] (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:all-tabpanel ]

Lukasz Lenart updated INFRA-6350:
---------------------------------

    Description: 
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}

  was:
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
svn co https://svn.apache.org/repos/infra/websites/production/struts/content/development/2.x/docs struts2-draft-docs --no-auth-cache

# Grab docs from Confluence
wget -erobots=off -nH -nv -E -L --directory-prefix=cwiki
--no-check-certificate -r https://cwiki.apache.org/WW/

# Remove the old docs
rm -R struts2-draft-docs/*

# Move the new docs
mv cwiki/WW/* struts2-draft-docs/

cd 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
        # Commit changes
        svn commit -m "Updates draft docs" --no-auth-cache
else
        echo "No changes detected"
fi

cd ..

# Cleanup
rm -R struts2-draft-docs
rm -R cwiki

echo "Success!"
{noformat}

    
> 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 is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira