Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Modeling Project Releng/Maintenance/SearchCVS"

 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
  
 
  ssh modelingBuild@build.eclipse.org
 
  ssh modelingBuild@build.eclipse.org
cd /opt/public/modeling/searchcvs/cvssrc_branches
+
  cd /opt/public/modeling/searchcvs/cvssrc_branches
for f in $(find . -maxdepth 1 -type d -name "*R2_4_maintenance"); do \
+
  for f in $(find . -maxdepth 1 -type d -name "*R2_4_maintenance"); do \
  cd $f; cvs -q up -Pd 2>/dev/null; cd ..; \
+
    cd $f; cvs -q up -Pd 2>/dev/null; cd ..; \
done
+
  done
 +
 
 +
Once updated, you can re-run the web API for the version audit check to see if there are any additional problems:
 +
 
 +
* [http://build.eclipse.org/modeling/emf/emf/versionaudit.php?branch=R2_4_maintenance&html EMF 2.4.x audit]
 +
* [http://build.eclipse.org/modeling/mdt/xsd/versionaudit.php?branch=R2_4_maintenance&html XSD 2.4.x audit]
  
 
See also [[Modeling_Project_Releng/Plugin_Version_Auditing#CVS_checkouts | Plugin Version Auditing - CVS checkouts]].
 
See also [[Modeling_Project_Releng/Plugin_Version_Auditing#CVS_checkouts | Plugin Version Auditing - CVS checkouts]].
  
 
[[Category:EMF]] [[Category:Releng]]
 
[[Category:EMF]] [[Category:Releng]]

Latest revision as of 15:00, 11 November 2008

If you use the Search CVS to validate your plugins' and features' versions, you need to ensure that the database is current.

ssh modelingBuild@build.eclipse.org
  cd /opt/public/modeling/searchcvs/cvssrc_branches
  for f in $(find . -maxdepth 1 -type d -name "*R2_4_maintenance"); do \
    cd $f; cvs -q up -Pd 2>/dev/null; cd ..; \
  done

Once updated, you can re-run the web API for the version audit check to see if there are any additional problems:

See also Plugin Version Auditing - CVS checkouts.

Back to the top