Hiro_Protagonist

Quick and dirty OpenSimulator Region Module workflow

Sep 21st, 2012
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. 1. clone opensim repository
  2. git clone git://opensimulator.org/git/opensim opensimulator-repository
  3.  
  4. 2. create a branch to work in
  5. git branch modinvokeexperiments
  6.  
  7. 3. checkout the working branch
  8. git checkout modinvokeexperiments
  9.  
  10. 4. add module code tree to addon-modules path (remove it from .gitignore)
  11. vi ~/opensimulator-repo/.gitignore
  12. /addon-modules <= vi 'search' for addon-modules line
  13. dd <= vi delete line
  14. ZZ <= vi save and exit
  15.  
  16. 5. create repository archive. in the repository root:
  17. git archive HEAD --format=zip >opensim-modinvokeexperiments.zip
  18.  
  19. 6. extract archive to staging foder (I just open it with the file manager, copy it, and paste it to the staging folder)
  20.  
  21. 7. create module prebuild and module code
  22.  
  23. 8. attempt to build. Subsequent work occurs in the staging/testing folder until otherwise noted
  24.  
  25. 9. troubleshoot and debug the prebuild - Thanks SignPostMarv
  26.  
  27. 10. troubleshoot and debug the assembly references in the primary module source - also Thanks SignPostMarv
  28.  
  29. 11. prebuild and compile
  30.  
  31. 12. repeat 6-9 as needed
  32.  
  33. 13. update the module code in the repository
Advertisement
Add Comment
Please, Sign In to add comment