sierra-research 1.2.22__tar.gz → 1.3.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (283) hide show
  1. {sierra-research-1.2.22 → sierra-research-1.3.5}/.github/actions/publish/action.yml +2 -2
  2. {sierra-research-1.2.22 → sierra-research-1.3.5}/.github/actions/sample-project-setup/action.yml +17 -2
  3. {sierra-research-1.2.22 → sierra-research-1.3.5}/.github/actions/sierra-setup/action.yml +18 -26
  4. {sierra-research-1.2.22 → sierra-research-1.3.5}/.github/workflows/argos.yml +42 -24
  5. {sierra-research-1.2.22 → sierra-research-1.3.5}/.github/workflows/coverage.yml +12 -25
  6. {sierra-research-1.2.22 → sierra-research-1.3.5}/.github/workflows/exec-env-plugins.yml +4 -4
  7. {sierra-research-1.2.22 → sierra-research-1.3.5}/.github/workflows/integration-all.yml +9 -1
  8. {sierra-research-1.2.22 → sierra-research-1.3.5}/.github/workflows/ros1gazebo.yml +4 -8
  9. {sierra-research-1.2.22 → sierra-research-1.3.5}/.github/workflows/sierra-core.yml +77 -39
  10. {sierra-research-1.2.22 → sierra-research-1.3.5}/.github/workflows/static-analysis.yml +11 -1
  11. {sierra-research-1.2.22 → sierra-research-1.3.5}/.github/workflows/unit-tests.yml +0 -1
  12. sierra-research-1.3.5/LICENSE +18 -0
  13. {sierra-research-1.2.22/sierra_research.egg-info → sierra-research-1.3.5}/PKG-INFO +6 -14
  14. {sierra-research-1.2.22 → sierra-research-1.3.5}/README.rst +2 -10
  15. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/_build/man/sierra-cli.1 +6 -5
  16. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/_build/man/sierra-examples.7 +1 -1
  17. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/_build/man/sierra-exec-envs.7 +1 -1
  18. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/_build/man/sierra-glossary.7 +1 -1
  19. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/_build/man/sierra-platforms.7 +1 -1
  20. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/_build/man/sierra-usage.7 +1 -1
  21. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/_build/man/sierra.7 +1 -1
  22. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/conf.py +11 -10
  23. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/contributing.rst +2 -2
  24. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/getting_started.rst +1 -0
  25. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/requirements.rst +20 -1
  26. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/trial.rst +1 -0
  27. sierra-research-1.3.5/docs/src/tutorials/project/models.rst +109 -0
  28. {sierra-research-1.2.22 → sierra-research-1.3.5}/noxfile.py +1 -1
  29. {sierra-research-1.2.22 → sierra-research-1.3.5}/setup.py +6 -4
  30. sierra-research-1.3.5/sierra/__init__.py +11 -0
  31. sierra-research-1.3.5/sierra/core/__init__.py +11 -0
  32. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/cmdline.py +2 -14
  33. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/config.py +3 -14
  34. sierra-research-1.3.5/sierra/core/experiment/__init__.py +9 -0
  35. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/experiment/bindings.py +1 -13
  36. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/experiment/definition.py +1 -13
  37. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/experiment/spec.py +1 -13
  38. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/experiment/xml.py +1 -13
  39. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/generators/controller_generator_parser.py +1 -13
  40. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/generators/exp_creator.py +1 -13
  41. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/generators/exp_generators.py +1 -13
  42. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/generators/generator_factory.py +1 -13
  43. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/graphs/heatmap.py +1 -13
  44. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/graphs/scatterplot2D.py +1 -13
  45. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/graphs/stacked_line_graph.py +10 -19
  46. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/graphs/stacked_surface_graph.py +1 -13
  47. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/graphs/summary_line_graph.py +1 -13
  48. sierra-research-1.3.5/sierra/core/hpc/__init__.py +10 -0
  49. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/hpc/cmdline.py +1 -13
  50. sierra-research-1.3.5/sierra/core/logging.py +34 -0
  51. sierra-research-1.3.5/sierra/core/models/__init__.py +9 -0
  52. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/models/graphs.py +1 -14
  53. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/models/interface.py +1 -13
  54. sierra-research-1.3.5/sierra/core/pipeline/__init__.py +8 -0
  55. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/pipeline/pipeline.py +1 -13
  56. sierra-research-1.3.5/sierra/core/pipeline/stage1/__init__.py +0 -0
  57. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/pipeline/stage1/pipeline_stage1.py +1 -13
  58. sierra-research-1.3.5/sierra/core/pipeline/stage2/__init__.py +0 -0
  59. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/pipeline/stage2/exp_runner.py +5 -17
  60. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/pipeline/stage2/pipeline_stage2.py +1 -13
  61. sierra-research-1.3.5/sierra/core/pipeline/stage3/__init__.py +0 -0
  62. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/pipeline/stage3/imagizer.py +3 -14
  63. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/pipeline/stage3/pipeline_stage3.py +1 -13
  64. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/pipeline/stage3/run_collator.py +1 -13
  65. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/pipeline/stage3/statistics_calculator.py +1 -13
  66. sierra-research-1.3.5/sierra/core/pipeline/stage4/__init__.py +2 -0
  67. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/pipeline/stage4/graph_collator.py +1 -13
  68. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/pipeline/stage4/inter_exp_graph_generator.py +1 -13
  69. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/pipeline/stage4/intra_exp_graph_generator.py +1 -13
  70. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/pipeline/stage4/model_runner.py +1 -13
  71. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/pipeline/stage4/pipeline_stage4.py +1 -13
  72. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/pipeline/stage4/rendering.py +1 -13
  73. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/pipeline/stage4/yaml_config_loader.py +1 -13
  74. sierra-research-1.3.5/sierra/core/pipeline/stage5/__init__.py +0 -0
  75. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/pipeline/stage5/inter_scenario_comparator.py +1 -13
  76. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/pipeline/stage5/intra_scenario_comparator.py +1 -14
  77. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/pipeline/stage5/pipeline_stage5.py +1 -13
  78. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/platform.py +1 -13
  79. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/plugin.py +1 -13
  80. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/plugin_manager.py +1 -13
  81. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/root_dirpath_generator.py +6 -14
  82. sierra-research-1.3.5/sierra/core/ros1/__init__.py +10 -0
  83. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/ros1/callbacks.py +1 -13
  84. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/ros1/cmdline.py +1 -13
  85. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/ros1/generators.py +1 -13
  86. sierra-research-1.3.5/sierra/core/ros1/variables/__init__.py +9 -0
  87. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/ros1/variables/exp_setup.py +1 -13
  88. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/startup.py +6 -17
  89. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/stat_kernels.py +1 -13
  90. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/storage.py +1 -13
  91. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/types.py +1 -13
  92. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/utils.py +1 -13
  93. sierra-research-1.3.5/sierra/core/variables/__init__.py +4 -0
  94. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/variables/base_variable.py +1 -13
  95. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/variables/batch_criteria.py +1 -13
  96. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/variables/exp_setup.py +1 -13
  97. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/variables/population_size.py +1 -13
  98. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/variables/variable_density.py +1 -13
  99. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/vector.py +1 -13
  100. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/main.py +25 -14
  101. sierra-research-1.3.5/sierra/plugins/__init__.py +9 -0
  102. sierra-research-1.3.5/sierra/plugins/hpc/__init__.py +9 -0
  103. sierra-research-1.3.5/sierra/plugins/hpc/adhoc/__init__.py +9 -0
  104. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/hpc/adhoc/plugin.py +1 -13
  105. sierra-research-1.3.5/sierra/plugins/hpc/local/__init__.py +9 -0
  106. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/hpc/local/plugin.py +1 -13
  107. sierra-research-1.3.5/sierra/plugins/hpc/pbs/__init__.py +9 -0
  108. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/hpc/pbs/plugin.py +1 -13
  109. sierra-research-1.3.5/sierra/plugins/hpc/slurm/__init__.py +9 -0
  110. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/hpc/slurm/plugin.py +1 -13
  111. sierra-research-1.3.5/sierra/plugins/platform/__init__.py +9 -0
  112. sierra-research-1.3.5/sierra/plugins/platform/argos/__init__.py +9 -0
  113. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/platform/argos/cmdline.py +1 -13
  114. sierra-research-1.3.5/sierra/plugins/platform/argos/generators/__init__.py +9 -0
  115. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/platform/argos/generators/platform_generators.py +1 -13
  116. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/platform/argos/plugin.py +7 -15
  117. sierra-research-1.3.5/sierra/plugins/platform/argos/variables/__init__.py +9 -0
  118. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/platform/argos/variables/arena_shape.py +1 -13
  119. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/platform/argos/variables/cameras.py +1 -13
  120. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/platform/argos/variables/constant_density.py +1 -13
  121. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/platform/argos/variables/exp_setup.py +1 -13
  122. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/platform/argos/variables/physics_engines.py +1 -13
  123. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/platform/argos/variables/population_constant_density.py +1 -13
  124. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/platform/argos/variables/population_size.py +1 -13
  125. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/platform/argos/variables/population_variable_density.py +1 -13
  126. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/platform/argos/variables/rendering.py +1 -13
  127. sierra-research-1.3.5/sierra/plugins/platform/ros1gazebo/__init__.py +9 -0
  128. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/platform/ros1gazebo/cmdline.py +1 -13
  129. sierra-research-1.3.5/sierra/plugins/platform/ros1gazebo/generators/__init__.py +9 -0
  130. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/platform/ros1gazebo/generators/platform_generators.py +1 -13
  131. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/platform/ros1gazebo/plugin.py +1 -13
  132. sierra-research-1.3.5/sierra/plugins/platform/ros1gazebo/variables/__init__.py +10 -0
  133. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/platform/ros1gazebo/variables/population_size.py +1 -13
  134. sierra-research-1.3.5/sierra/plugins/platform/ros1robot/__init__.py +9 -0
  135. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/platform/ros1robot/cmdline.py +1 -13
  136. sierra-research-1.3.5/sierra/plugins/platform/ros1robot/generators/__init__.py +9 -0
  137. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/platform/ros1robot/generators/platform_generators.py +1 -13
  138. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/platform/ros1robot/plugin.py +1 -13
  139. sierra-research-1.3.5/sierra/plugins/platform/ros1robot/variables/__init__.py +10 -0
  140. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/platform/ros1robot/variables/population_size.py +1 -13
  141. sierra-research-1.3.5/sierra/plugins/robot/__init__.py +9 -0
  142. sierra-research-1.3.5/sierra/plugins/robot/turtlebot3/__init__.py +9 -0
  143. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/robot/turtlebot3/plugin.py +1 -13
  144. sierra-research-1.3.5/sierra/plugins/storage/__init__.py +9 -0
  145. sierra-research-1.3.5/sierra/plugins/storage/csv/__init__.py +9 -0
  146. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/plugins/storage/csv/plugin.py +1 -13
  147. sierra-research-1.3.5/sierra/version.py +12 -0
  148. {sierra-research-1.2.22 → sierra-research-1.3.5/sierra_research.egg-info}/PKG-INFO +6 -14
  149. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra_research.egg-info/SOURCES.txt +1 -1
  150. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra_research.egg-info/requires.txt +4 -2
  151. {sierra-research-1.2.22 → sierra-research-1.3.5}/todo.org +8 -2
  152. sierra-research-1.2.22/LICENSE.md +0 -674
  153. sierra-research-1.2.22/docs/src/tutorials/project/models.rst +0 -80
  154. sierra-research-1.2.22/sierra/__init__.py +0 -23
  155. sierra-research-1.2.22/sierra/core/__init__.py +0 -23
  156. sierra-research-1.2.22/sierra/core/experiment/__init__.py +0 -21
  157. sierra-research-1.2.22/sierra/core/hpc/__init__.py +0 -22
  158. sierra-research-1.2.22/sierra/core/logging.py +0 -55
  159. sierra-research-1.2.22/sierra/core/models/__init__.py +0 -21
  160. sierra-research-1.2.22/sierra/core/pipeline/__init__.py +0 -20
  161. sierra-research-1.2.22/sierra/core/pipeline/stage1/__init__.py +0 -1
  162. sierra-research-1.2.22/sierra/core/pipeline/stage2/__init__.py +0 -1
  163. sierra-research-1.2.22/sierra/core/pipeline/stage3/__init__.py +0 -1
  164. sierra-research-1.2.22/sierra/core/pipeline/stage4/__init__.py +0 -3
  165. sierra-research-1.2.22/sierra/core/pipeline/stage5/__init__.py +0 -1
  166. sierra-research-1.2.22/sierra/core/ros1/__init__.py +0 -22
  167. sierra-research-1.2.22/sierra/core/ros1/variables/__init__.py +0 -21
  168. sierra-research-1.2.22/sierra/core/variables/__init__.py +0 -16
  169. sierra-research-1.2.22/sierra/plugins/__init__.py +0 -21
  170. sierra-research-1.2.22/sierra/plugins/hpc/__init__.py +0 -21
  171. sierra-research-1.2.22/sierra/plugins/hpc/adhoc/__init__.py +0 -21
  172. sierra-research-1.2.22/sierra/plugins/hpc/local/__init__.py +0 -21
  173. sierra-research-1.2.22/sierra/plugins/hpc/pbs/__init__.py +0 -21
  174. sierra-research-1.2.22/sierra/plugins/hpc/slurm/__init__.py +0 -21
  175. sierra-research-1.2.22/sierra/plugins/platform/__init__.py +0 -21
  176. sierra-research-1.2.22/sierra/plugins/platform/argos/__init__.py +0 -21
  177. sierra-research-1.2.22/sierra/plugins/platform/argos/generators/__init__.py +0 -21
  178. sierra-research-1.2.22/sierra/plugins/platform/argos/variables/__init__.py +0 -21
  179. sierra-research-1.2.22/sierra/plugins/platform/ros1gazebo/__init__.py +0 -21
  180. sierra-research-1.2.22/sierra/plugins/platform/ros1gazebo/generators/__init__.py +0 -21
  181. sierra-research-1.2.22/sierra/plugins/platform/ros1gazebo/variables/__init__.py +0 -22
  182. sierra-research-1.2.22/sierra/plugins/platform/ros1robot/__init__.py +0 -21
  183. sierra-research-1.2.22/sierra/plugins/platform/ros1robot/generators/__init__.py +0 -21
  184. sierra-research-1.2.22/sierra/plugins/platform/ros1robot/variables/__init__.py +0 -22
  185. sierra-research-1.2.22/sierra/plugins/robot/__init__.py +0 -21
  186. sierra-research-1.2.22/sierra/plugins/robot/turtlebot3/__init__.py +0 -21
  187. sierra-research-1.2.22/sierra/plugins/storage/__init__.py +0 -21
  188. sierra-research-1.2.22/sierra/plugins/storage/csv/__init__.py +0 -21
  189. sierra-research-1.2.22/sierra/version.py +0 -23
  190. {sierra-research-1.2.22 → sierra-research-1.3.5}/.coveragerc +0 -0
  191. {sierra-research-1.2.22 → sierra-research-1.3.5}/.dir-locals.el +0 -0
  192. {sierra-research-1.2.22 → sierra-research-1.3.5}/.github/actions/slurm-setup/action.yml +0 -0
  193. {sierra-research-1.2.22 → sierra-research-1.3.5}/.github/workflows/ros1robot.yml +0 -0
  194. {sierra-research-1.2.22 → sierra-research-1.3.5}/.gitignore +0 -0
  195. {sierra-research-1.2.22 → sierra-research-1.3.5}/.projectile +0 -0
  196. {sierra-research-1.2.22 → sierra-research-1.3.5}/.pylintrc +0 -0
  197. {sierra-research-1.2.22 → sierra-research-1.3.5}/.readthedocs.yml +0 -0
  198. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/Makefile +0 -0
  199. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/_ext/xref.py +0 -0
  200. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/_templates/autoapi/module.rst +0 -0
  201. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/figures/architecture.png +0 -0
  202. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/index.rst +0 -0
  203. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/man/sierra-cli.rst +0 -0
  204. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/man/sierra-examples.rst +0 -0
  205. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/man/sierra-exec-envs.rst +0 -0
  206. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/man/sierra-glossary.rst +0 -0
  207. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/man/sierra-platforms.rst +0 -0
  208. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/man/sierra-usage.rst +0 -0
  209. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/man/sierra.rst +0 -0
  210. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/requirements.txt +0 -0
  211. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/api.rst +0 -0
  212. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/description.rst +0 -0
  213. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/exec_env/hpc.rst +0 -0
  214. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/exec_env/index.rst +0 -0
  215. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/exec_env/robot.rst +0 -0
  216. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/faq.rst +0 -0
  217. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/glossary.rst +0 -0
  218. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/matrix.rst +0 -0
  219. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/packages.rst +0 -0
  220. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/philosophy.rst +0 -0
  221. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/platform/argos/batch_criteria.rst +0 -0
  222. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/platform/argos/index.rst +0 -0
  223. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/platform/index.rst +0 -0
  224. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/platform/ros1gazebo/batch_criteria.rst +0 -0
  225. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/platform/ros1gazebo/index.rst +0 -0
  226. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/platform/ros1robot/batch_criteria.rst +0 -0
  227. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/platform/ros1robot/index.rst +0 -0
  228. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/plugins/index.rst +0 -0
  229. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/roadmap.rst +0 -0
  230. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/storage/index.rst +0 -0
  231. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/tutorials/hpc/cluster_setup.rst +0 -0
  232. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/tutorials/hpc/local_setup.rst +0 -0
  233. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/tutorials/index.rst +0 -0
  234. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/tutorials/plugin/exec_env/index.rst +0 -0
  235. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/tutorials/plugin/exec_env/plugin.rst +0 -0
  236. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/tutorials/plugin/platform/cmdline.rst +0 -0
  237. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/tutorials/plugin/platform/generators.rst +0 -0
  238. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/tutorials/plugin/platform/index.rst +0 -0
  239. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/tutorials/plugin/platform/plugin.rst +0 -0
  240. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/tutorials/plugin/storage/index.rst +0 -0
  241. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/tutorials/plugin/storage/plugin.rst +0 -0
  242. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/tutorials/project/cmdline.rst +0 -0
  243. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/tutorials/project/generators.rst +0 -0
  244. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/tutorials/project/graphs_config.rst +0 -0
  245. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/tutorials/project/hooks.rst +0 -0
  246. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/tutorials/project/main_config/controllers.rst +0 -0
  247. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/tutorials/project/main_config/index.rst +0 -0
  248. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/tutorials/project/main_config/main.rst +0 -0
  249. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/tutorials/project/main_config/perf.rst +0 -0
  250. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/tutorials/project/new_bc.rst +0 -0
  251. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/tutorials/project/project.rst +0 -0
  252. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/tutorials/project/stage5_config.rst +0 -0
  253. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/tutorials/project/template_input_file.rst +0 -0
  254. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/usage/cli-argos.rst +0 -0
  255. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/usage/cli-core.rst +0 -0
  256. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/usage/cli-ros1gazebo.rst +0 -0
  257. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/usage/cli-ros1robot.rst +0 -0
  258. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/usage/cli.rst +0 -0
  259. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/usage/environment.rst +0 -0
  260. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/usage/examples.rst +0 -0
  261. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/usage/index.rst +0 -0
  262. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/usage/pipeline.rst +0 -0
  263. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/usage/rendering.rst +0 -0
  264. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/usage/run_time_tree.rst +0 -0
  265. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/usage/stage5.rst +0 -0
  266. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/usage/subprograms.rst +0 -0
  267. {sierra-research-1.2.22 → sierra-research-1.3.5}/docs/src/usage/variables.rst +0 -0
  268. {sierra-research-1.2.22 → sierra-research-1.3.5}/scripts/argos-integration-tests.sh +0 -0
  269. {sierra-research-1.2.22 → sierra-research-1.3.5}/scripts/core-integration-tests.sh +0 -0
  270. {sierra-research-1.2.22 → sierra-research-1.3.5}/scripts/ros1gazebo-integration-tests.sh +0 -0
  271. {sierra-research-1.2.22 → sierra-research-1.3.5}/scripts/ros1robot-integration-tests.sh +0 -0
  272. {sierra-research-1.2.22 → sierra-research-1.3.5}/scripts/slurm-test.sh +0 -0
  273. {sierra-research-1.2.22 → sierra-research-1.3.5}/scripts/slurm.conf +0 -0
  274. {sierra-research-1.2.22 → sierra-research-1.3.5}/setup.cfg +0 -0
  275. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/generators/__init__.py +0 -0
  276. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra/core/graphs/__init__.py +0 -0
  277. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra_research.egg-info/dependency_links.txt +0 -0
  278. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra_research.egg-info/entry_points.txt +0 -0
  279. {sierra-research-1.2.22 → sierra-research-1.3.5}/sierra_research.egg-info/top_level.txt +0 -0
  280. {sierra-research-1.2.22 → sierra-research-1.3.5}/tests/arena_extent_test.py +0 -0
  281. {sierra-research-1.2.22 → sierra-research-1.3.5}/tests/exp_def_test.py +0 -0
  282. {sierra-research-1.2.22 → sierra-research-1.3.5}/tests/test1.xml +0 -0
  283. {sierra-research-1.2.22 → sierra-research-1.3.5}/tests/vector_test.py +0 -0
@@ -21,7 +21,7 @@ runs:
21
21
  - name: Set tag
22
22
  if: github.ref == 'refs/heads/devel'
23
23
  shell: bash
24
- run: echo "RELEASE_TAG=v$(python3 setup.py --version).beta" >> $GITHUB_ENV
24
+ run: echo "RELEASE_TAG=$(python3 setup.py --version).beta" >> $GITHUB_ENV
25
25
 
26
26
  - name: Github beta release
27
27
  if: github.ref == 'refs/heads/devel'
@@ -45,7 +45,7 @@ runs:
45
45
  - name: Set tag
46
46
  if: github.ref == 'refs/heads/master'
47
47
  shell: bash
48
- run: echo "RELEASE_TAG=v$(python3 setup.py --version)" >> $GITHUB_ENV
48
+ run: echo "RELEASE_TAG=$(python3 setup.py --version)" >> $GITHUB_ENV
49
49
 
50
50
  - name: Github release
51
51
  if: github.ref == 'refs/heads/master'
@@ -37,10 +37,12 @@ runs:
37
37
  shell: bash
38
38
  working-directory: ../../
39
39
  run: |
40
+ # 2023/01/16: || true needed because homebrew installation of whatever
41
+ # dependencies these packages requires manual intervention to fix, and I
42
+ # don't have a mac.
40
43
  if [ "${{ runner.os }}" == "macOS" ]; then
41
- brew update
42
44
  brew install pkg-config cmake libpng freeimage lua qt \
43
- docbook asciidoc graphviz doxygen
45
+ docbook asciidoc graphviz doxygen|| true
44
46
  elif [ "${{ runner.os }}" == "Linux" ]; then
45
47
  sudo apt-get update
46
48
  sudo apt-get install cmake libfreeimage-dev libfreeimageplus-dev \
@@ -89,6 +91,19 @@ runs:
89
91
  sudo apt-get install ros-${{ inputs.rosdistro }}-turtlebot3-msgs
90
92
  sudo apt-get install ros-${{ inputs.rosdistro }}-turtlebot3-gazebo
91
93
  sudo apt-get install ros-${{ inputs.rosdistro }}-turtlebot3-bringup
94
+ sudo apt-get install python${{ matrix.python-version }} python${{ matrix.python-version }}-dev
95
+ sudo apt-get install python${{ matrix.python-version }}-venv python3-apt
96
+ sudo apt-get install python3-pip python3-cairo intltool python3-wheel python3-rospkg python3-empy
97
+
98
+ # 2023/1/18: You still need install these even after installing stuff
99
+ # with apt AND if the sysem python matches your current python. I don't
100
+ # know why.
101
+ pip3 install empy
102
+ pip3 install rospkg wheel pyparsing pyqt5
103
+ pip3 install pyqt5 pysip numpy rospkg
104
+ pip3 install matplotlib pyyaml psutil
105
+ pip3 install pysip defusedxml pyparsing pydev
106
+ pip3 install pyopengl opencv-python
92
107
 
93
108
  - name: Install SIERRA ROSBridge dependency (ubuntu)
94
109
  if: inputs.platform == 'ros1gazebo'
@@ -16,24 +16,10 @@ runs:
16
16
  # Ubuntu setup
17
17
  ############################################################################
18
18
  - name: Setup python (ubuntu)
19
+ uses: actions/setup-python@v4
19
20
  if: runner.os == 'Linux'
20
- shell: bash
21
- run: |
22
- # apt fails randomly on microsoft's azure servers...
23
- sudo sed -i 's/azure\.//' /etc/apt/sources.list
24
- sudo add-apt-repository -y ppa:deadsnakes/ppa
25
-
26
- sudo apt-get update
27
-
28
- sudo apt-get install python${{ matrix.python-version }} python${{ matrix.python-version }}-dev
29
- sudo apt-get install python${{ matrix.python-version }}-venv python3-apt
30
- sudo apt-get install python3-pip python3-cairo intltool python3-wheel strace
31
- sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python${{ matrix.python-version }} 1
32
-
33
- # HACK HACK HACK!
34
- sudo ln -s /usr/lib/python3/dist-packages/apt_pkg.cpython-38-x86_64-linux-gnu.so /usr/lib/python3/dist-packages/apt_pkg.so
35
- sudo ln -s /usr/lib/python3/dist-packages/netifaces.cpython-38-x86_64-linux-gnu.so /usr/lib/python3/dist-packages/netifaces.so
36
-
21
+ with:
22
+ python-version: ${{ matrix.python-version }}
37
23
 
38
24
  - name: Install system deps (ubuntu)
39
25
  if: runner.os == 'Linux'
@@ -55,16 +41,22 @@ runs:
55
41
  with:
56
42
  python-version: ${{ matrix.python-version }}
57
43
 
58
- - name: Install system deps (OSX)
59
- shell: bash
44
+ - uses: nick-fields/retry@v2
45
+ name: Install system deps (OSX)
60
46
  if: runner.os == 'macOS'
61
- run: |
62
- brew update
63
- brew install parallel pssh ffmpeg
64
- brew install --cask mactex
65
- brew install --cask xquartz
66
- python -m pip install --upgrade pip
67
- python -m pip install wheel
47
+ with:
48
+ timeout_minutes: 10000
49
+ max_attempts: 3
50
+ shell: bash
51
+ command: |
52
+ # 2023/01/16: || true needed because homebrew installation of whatever
53
+ # dependencies these packages requires manual intervention to fix, and I
54
+ # don't have a mac.
55
+ brew update && brew install parallel pssh ffmpeg
56
+ brew update && brew install --cask mactex
57
+ brew update && brew install --cask xquartz
58
+ python -m pip install --upgrade pip
59
+ python -m pip install wheel
68
60
 
69
61
  ############################################################################
70
62
  # SIERRA install
@@ -24,10 +24,13 @@ jobs:
24
24
  with:
25
25
  platform: argos
26
26
 
27
- - name: Integration tests
28
- shell: bash
29
- run: |
30
- ./scripts/argos-integration-tests.sh -f bc_univar_sanity_test
27
+ - uses: nick-fields/retry@v2
28
+ name: Integration tests
29
+ with:
30
+ timeout_minutes: 3600
31
+ max_attempts: 3
32
+ shell: bash
33
+ command: ./scripts/argos-integration-tests.sh -f bc_univar_sanity_test
31
34
 
32
35
  - uses: actions/upload-artifact@v3
33
36
  with:
@@ -49,10 +52,13 @@ jobs:
49
52
  with:
50
53
  platform: argos
51
54
 
52
- - name: Integration tests
53
- shell: bash
54
- run: |
55
- ./scripts/argos-integration-tests.sh -f physics_engines_test
55
+ - uses: nick-fields/retry@v2
56
+ name: Integration tests
57
+ with:
58
+ timeout_minutes: 3600
59
+ max_attempts: 3
60
+ shell: bash
61
+ command: ./scripts/argos-integration-tests.sh -f physics_engines_test
56
62
 
57
63
  - uses: actions/upload-artifact@v3
58
64
  with:
@@ -73,10 +79,13 @@ jobs:
73
79
  with:
74
80
  platform: argos
75
81
 
76
- - name: Integration tests
77
- shell: bash
78
- run: |
79
- ./scripts/argos-integration-tests.sh -f stage1_univar_test
82
+ - uses: nick-fields/retry@v2
83
+ name: Integration tests
84
+ with:
85
+ timeout_minutes: 3600
86
+ max_attempts: 3
87
+ shell: bash
88
+ command: ./scripts/argos-integration-tests.sh -f stage1_univar_test
80
89
 
81
90
  - uses: actions/upload-artifact@v3
82
91
  with:
@@ -97,10 +106,13 @@ jobs:
97
106
  with:
98
107
  platform: argos
99
108
 
100
- - name: Integration tests
101
- shell: bash
102
- run: |
103
- ./scripts/argos-integration-tests.sh -f stage2_univar_test -e hpc.local
109
+ - uses: nick-fields/retry@v2
110
+ name: Integration tests
111
+ with:
112
+ timeout_minutes: 3600
113
+ max_attempts: 3
114
+ shell: bash
115
+ command: ./scripts/argos-integration-tests.sh -f stage2_univar_test -e hpc.local
104
116
 
105
117
  - uses: actions/upload-artifact@v3
106
118
  with:
@@ -123,10 +135,13 @@ jobs:
123
135
  with:
124
136
  platform: argos
125
137
 
126
- - name: Integration tests
127
- shell: bash
128
- run: |
129
- ./scripts/argos-integration-tests.sh -f vc_test
138
+ - uses: nick-fields/retry@v2
139
+ name: Integration tests
140
+ with:
141
+ timeout_minutes: 3600
142
+ max_attempts: 3
143
+ shell: bash
144
+ command: ./scripts/argos-integration-tests.sh -f vc_test
130
145
 
131
146
  - uses: actions/upload-artifact@v3
132
147
  with:
@@ -148,10 +163,13 @@ jobs:
148
163
  with:
149
164
  platform: argos
150
165
 
151
- - name: Integration tests
152
- shell: bash
153
- run: |
154
- ./scripts/argos-integration-tests.sh -f cmdline_test
166
+ - uses: nick-fields/retry@v2
167
+ name: Integration tests
168
+ with:
169
+ timeout_minutes: 3600
170
+ max_attempts: 3
171
+ shell: bash
172
+ command: ./scripts/argos-integration-tests.sh -f cmdline_test
155
173
 
156
174
  - uses: actions/upload-artifact@v3
157
175
  with:
@@ -1,9 +1,20 @@
1
1
  name: Coverage CI
2
2
 
3
+ # Run:
4
+ #
5
+ # - Every month. Scheduling helps keep drift/issues with updates
6
+ # to runners at bay.
7
+ # - On pushes.
3
8
  on:
4
9
  push:
5
10
  paths:
6
11
  - 'sierra/**'
12
+ schedule:
13
+ - cron: '0 0 1 * *'
14
+
15
+ concurrency:
16
+ group: ${{ github.workflow }}-${{ github.ref }}
17
+ cancel-in-progress: true
7
18
 
8
19
  jobs:
9
20
  argos-ci:
@@ -42,38 +53,14 @@ jobs:
42
53
  with:
43
54
  os: ubuntu-20.04
44
55
 
45
- # docs:
46
- # runs-on: ubuntu-latest
47
- # strategy:
48
- # matrix:
49
- # python-version:
50
- # - 3.9
51
- # steps:
52
- # - uses: actions/checkout@v3
53
- # - uses: ./.github/actions/sierra-setup
54
-
55
- # - name: Build docs
56
- # shell: bash
57
- # run: |
58
- # cd docs && coverage run $(which sphinx-build) -M html "." "_build"
59
- # cd docs && coverage combine
60
- # cd docs && coverage report
61
- # cd docs && coverage xml
62
-
63
- # - uses: actions/upload-artifact@v3
64
- # with:
65
- # name: ci-sphinx-docs-${{ runner.os }}-${{ matrix.python-version }}-coverage
66
- # path: docs/.coverage.*
67
-
68
56
  coverage:
69
57
  runs-on: ubuntu-latest
70
58
  strategy:
71
59
  matrix:
72
60
  python-version:
73
- - 3.9
61
+ - 3.8
74
62
 
75
63
  needs:
76
- # - docs
77
64
  - unit-tests
78
65
  - argos-ci
79
66
  - ros1gazebo-ci
@@ -13,16 +13,15 @@ on:
13
13
  # # - devel
14
14
  # paths:
15
15
  # - 'sierra/**'
16
-
17
16
  jobs:
18
-
19
17
  adhoc:
20
18
  runs-on: ${{ inputs.os }}
21
19
  strategy:
22
20
  matrix:
21
+ # You CANNOT use python 3.9 with ubuntu 20.04 with ROS, because 3.8 is
22
+ # the system python and things just don't work otherwise...
23
23
  python-version:
24
24
  - 3.8
25
- - 3.9
26
25
 
27
26
  steps:
28
27
  - uses: actions/checkout@v3
@@ -50,9 +49,10 @@ jobs:
50
49
  runs-on: ${{ inputs.os }}
51
50
  strategy:
52
51
  matrix:
52
+ # You CANNOT use python 3.9 with ubuntu 20.04 with ROS, because 3.8 is
53
+ # the system python and things just don't work otherwise...
53
54
  python-version:
54
55
  - 3.8
55
- - 3.9
56
56
 
57
57
  steps:
58
58
  - uses: actions/checkout@v3
@@ -1,10 +1,18 @@
1
1
  name: Integration Tests
2
2
 
3
+ # Run:
4
+ #
5
+ # - Every month. Scheduling helps keep drift/issues with updates
6
+ # to runners at bay.
7
+ # - On pushes.
3
8
  on:
4
9
  push:
5
10
  paths:
6
11
  - 'sierra/**'
7
12
 
13
+ schedule:
14
+ - cron: '0 0 1 * *'
15
+
8
16
  jobs:
9
17
  argos-ci-ubuntu:
10
18
  uses: ./.github/workflows/argos.yml
@@ -53,7 +61,7 @@ jobs:
53
61
  strategy:
54
62
  matrix:
55
63
  python-version:
56
- - 3.9
64
+ - 3.8
57
65
  needs:
58
66
  - argos-ci-ubuntu
59
67
  - argos-ci-osx
@@ -7,21 +7,16 @@ on:
7
7
  os:
8
8
  required: True
9
9
  type: string
10
- # push:
11
- # branches:
12
- # # - master
13
- # # - devel
14
- # paths:
15
- # - 'sierra/**'
16
10
 
17
11
  jobs:
18
12
  bc-univar-sanity:
19
13
  runs-on: ${{ inputs.os }}
20
14
  strategy:
21
15
  matrix:
16
+ # You CANNOT use python 3.9 with ubuntu 20.04 with ROS, because 3.8 is
17
+ # the system python and things just don't work otherwise...
22
18
  python-version:
23
19
  - 3.8
24
- - 3.9
25
20
 
26
21
  steps:
27
22
  - uses: actions/checkout@v3
@@ -47,9 +42,10 @@ jobs:
47
42
  runs-on: ${{ inputs.os }}
48
43
  strategy:
49
44
  matrix:
45
+ # You CANNOT use python 3.9 with ubuntu 20.04 with ROS, because 3.8 is
46
+ # the system python and things just don't work otherwise...
50
47
  python-version:
51
48
  - 3.8
52
- - 3.9
53
49
 
54
50
  steps:
55
51
  - uses: actions/checkout@v3
@@ -8,7 +8,6 @@ on:
8
8
  type: string
9
9
 
10
10
  jobs:
11
-
12
11
  cmdline-opts:
13
12
  runs-on: ${{ inputs.os }}
14
13
  strategy:
@@ -24,9 +23,13 @@ jobs:
24
23
  with:
25
24
  platform: argos
26
25
 
27
- - name: Cmdline Options
28
- run: |
29
- ./scripts/core-integration-tests.sh -f cmdline_opts_test
26
+ - uses: nick-fields/retry@v2
27
+ name: Cmdline options
28
+ with:
29
+ timeout_minutes: 3600
30
+ max_attempts: 3
31
+ shell: bash
32
+ command: ./scripts/core-integration-tests.sh -f cmdline_opts_test
30
33
 
31
34
  - uses: actions/upload-artifact@v3
32
35
  with:
@@ -48,9 +51,13 @@ jobs:
48
51
  with:
49
52
  platform: argos
50
53
 
51
- - name: Environment variables
52
- run: |
53
- ./scripts/core-integration-tests.sh -f env_vars_test
54
+ - uses: nick-fields/retry@v2
55
+ name: Environment variables
56
+ with:
57
+ timeout_minutes: 3600
58
+ max_attempts: 3
59
+ shell: bash
60
+ command: ./scripts/core-integration-tests.sh -f env_vars_test
54
61
 
55
62
  - uses: actions/upload-artifact@v3
56
63
  with:
@@ -78,14 +85,22 @@ jobs:
78
85
  platform: ros1gazebo
79
86
  rosdistro: noetic
80
87
 
81
- - name: Bivariate batch criteria sanity (ARGoS)
82
- run: |
83
- ./scripts/argos-integration-tests.sh -f bc_bivar_sanity_test
88
+ - uses: nick-fields/retry@v2
89
+ name: Bivariate batch criteria sanity (ARGoS)
90
+ with:
91
+ timeout_minutes: 3600
92
+ max_attempts: 3
93
+ shell: bash
94
+ command: ./scripts/argos-integration-tests.sh -f bc_bivar_sanity_test
84
95
 
85
- - name: Bivariate batch criteria sanity (ROS1+Gazebo)
96
+ - uses: nick-fields/retry@v2
86
97
  if: runner.os == 'Linux'
87
- run: |
88
- ./scripts/ros1gazebo-integration-tests.sh -f bc_bivar_sanity_test
98
+ name: Bivariate batch criteria sanity (ROS1+Gazebo)
99
+ with:
100
+ timeout_minutes: 3600
101
+ max_attempts: 3
102
+ shell: bash
103
+ command: ./scripts/ros1gazebo-integration-tests.sh -f bc_bivar_sanity_test
89
104
 
90
105
  - uses: actions/upload-artifact@v3
91
106
  with:
@@ -113,14 +128,22 @@ jobs:
113
128
  platform: ros1gazebo
114
129
  rosdistro: noetic
115
130
 
116
- - name: Bivariate batch criteria stage 1 (ARGoS)
117
- run: |
118
- ./scripts/argos-integration-tests.sh -f stage1_bivar_test
131
+ - uses: nick-fields/retry@v2
132
+ name: Bivariate batch criteria stage 1 (ARGoS)
133
+ with:
134
+ timeout_minutes: 3600
135
+ max_attempts: 3
136
+ shell: bash
137
+ command: ./scripts/argos-integration-tests.sh -f stage1_bivar_test
119
138
 
120
- - name: Bivariate batch criteria stage 1 (ROS1+Gazebo)
139
+ - uses: nick-fields/retry@v2
121
140
  if: runner.os == 'Linux'
122
- run: |
123
- ./scripts/ros1gazebo-integration-tests.sh -f stage1_bivar_test
141
+ name: Bivariate batch criteria stage 1 (ROS1+Gazebo)
142
+ with:
143
+ timeout_minutes: 3600
144
+ max_attempts: 3
145
+ shell: bash
146
+ command: ./scripts/ros1gazebo-integration-tests.sh -f stage1_bivar_test
124
147
 
125
148
  - uses: actions/upload-artifact@v3
126
149
  with:
@@ -141,10 +164,13 @@ jobs:
141
164
  with:
142
165
  platform: argos
143
166
 
144
- - name: Integration tests
145
- shell: bash
146
- run: |
147
- ./scripts/argos-integration-tests.sh -f stage3_univar_test
167
+ - uses: nick-fields/retry@v2
168
+ name: Stage3 univariate tests
169
+ with:
170
+ timeout_minutes: 3600
171
+ max_attempts: 3
172
+ shell: bash
173
+ command: ./scripts/argos-integration-tests.sh -f stage3_univar_test
148
174
 
149
175
  - uses: actions/upload-artifact@v3
150
176
  with:
@@ -165,10 +191,13 @@ jobs:
165
191
  with:
166
192
  platform: argos
167
193
 
168
- - name: Integration tests
169
- shell: bash
170
- run: |
171
- ./scripts/argos-integration-tests.sh -f stage3_bivar_test
194
+ - uses: nick-fields/retry@v2
195
+ name: Stage3 bivariate tests
196
+ with:
197
+ timeout_minutes: 3600
198
+ max_attempts: 3
199
+ shell: bash
200
+ command: ./scripts/argos-integration-tests.sh -f stage3_bivar_test
172
201
 
173
202
  - uses: actions/upload-artifact@v3
174
203
  with:
@@ -189,10 +218,13 @@ jobs:
189
218
  with:
190
219
  platform: argos
191
220
 
192
- - name: Integration tests
193
- shell: bash
194
- run: |
195
- ./scripts/argos-integration-tests.sh -f stage4_univar_test
221
+ - uses: nick-fields/retry@v2
222
+ name: Stage4 univariate tests
223
+ with:
224
+ timeout_minutes: 3600
225
+ max_attempts: 3
226
+ shell: bash
227
+ command: ./scripts/argos-integration-tests.sh -f stage4_univar_test
196
228
 
197
229
  - uses: actions/upload-artifact@v3
198
230
  with:
@@ -213,10 +245,13 @@ jobs:
213
245
  with:
214
246
  platform: argos
215
247
 
216
- - name: Integration tests
217
- shell: bash
218
- run: |
219
- ./scripts/argos-integration-tests.sh -f stage5_univar_test
248
+ - uses: nick-fields/retry@v2
249
+ name: Stage5 univariate tests
250
+ with:
251
+ timeout_minutes: 3600
252
+ max_attempts: 3
253
+ shell: bash
254
+ command: ./scripts/argos-integration-tests.sh -f stage5_univar_test
220
255
 
221
256
  - uses: actions/upload-artifact@v3
222
257
  with:
@@ -237,10 +272,13 @@ jobs:
237
272
  with:
238
273
  platform: argos
239
274
 
240
- - name: Integration tests
241
- shell: bash
242
- run: |
243
- ./scripts/argos-integration-tests.sh -f stage5_bivar_test
275
+ - uses: nick-fields/retry@v2
276
+ name: Stage5 univariate tests
277
+ with:
278
+ timeout_minutes: 3600
279
+ max_attempts: 3
280
+ shell: bash
281
+ command: ./scripts/argos-integration-tests.sh -f stage5_bivar_test
244
282
 
245
283
  - uses: actions/upload-artifact@v3
246
284
  with:
@@ -1,10 +1,20 @@
1
1
  name: Static Analysis
2
2
 
3
+ # Run:
4
+ #
5
+ # - Every month. Scheduling helps keep drift/issues with updates
6
+ # to runners at bay.
7
+ # - On pushes.
3
8
  on:
4
- workflow_call:
5
9
  push:
6
10
  paths:
7
11
  - 'sierra/**'
12
+ schedule:
13
+ - cron: '0 0 1 * *'
14
+
15
+ concurrency:
16
+ group: ${{ github.workflow }}-${{ github.ref }}
17
+ cancel-in-progress: true
8
18
 
9
19
  jobs:
10
20
  analyze:
@@ -28,7 +28,6 @@ jobs:
28
28
  which sierra-cli
29
29
  which python3
30
30
  nox --pythons ${{ matrix.python-version }} --sessions unit_tests
31
- ls -alh
32
31
 
33
32
  - uses: actions/upload-artifact@v3
34
33
  with:
@@ -0,0 +1,18 @@
1
+ Copyright 2022 John Harwell
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
4
+ this software and associated documentation files (the "Software"), to deal in
5
+ the Software without restriction, including without limitation the rights to
6
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
7
+ the Software, and to permit persons to whom the Software is furnished to do so,
8
+ subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
15
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
16
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
17
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
18
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -1,17 +1,17 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: sierra-research
3
- Version: 1.2.22
3
+ Version: 1.3.5
4
4
  Summary: Automation framework for the scientific method in AI research
5
5
  Home-page: https://github.com/jharwell/sierra
6
6
  Author: John Harwell
7
7
  Author-email: john.r.harwell@gmail.com
8
- License: GPLv3+
8
+ License: MIT
9
9
  Keywords: research,automation,robotics,agent-based modeling,reproducibility,reusability
10
10
  Platform: linux
11
11
  Platform: osx
12
12
  Classifier: Programming Language :: Python :: 3.8
13
13
  Classifier: Programming Language :: Python :: 3.9
14
- Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
14
+ Classifier: License :: OSI Approved :: MIT License
15
15
  Classifier: Environment :: Console
16
16
  Classifier: Operating System :: MacOS :: MacOS X
17
17
  Classifier: Operating System :: POSIX :: Linux
@@ -22,7 +22,7 @@ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
22
22
  Requires-Python: >=3.8
23
23
  Description-Content-Type: text/x-rst
24
24
  Provides-Extra: devel
25
- License-File: LICENSE.md
25
+ License-File: LICENSE
26
26
 
27
27
  ===========================================================================
28
28
  SIERRA (reSearch pIpEline for Reproducibility, Reusability, and Automation)
@@ -40,13 +40,6 @@ SIERRA (reSearch pIpEline for Reproducibility, Reusability, and Automation)
40
40
  .. |linux-supported| image:: https://svgshare.com/i/Zhy.svg
41
41
  .. |osx-supported| image:: https://svgshare.com/i/ZjP.svg
42
42
 
43
- ..
44
- .. image:: https://img.shields.io/badge/python-3.8-blue.svg
45
- :target: https://www.python.org/downloads/release/python-380/
46
-
47
- .. image:: https://img.shields.io/badge/python-3.9-blue.svg
48
- :target: https://www.python.org/downloads/release/python-390/
49
-
50
43
  .. |ci-integration-master| image:: https://github.com/jharwell/sierra/actions/workflows/integration-all.yml/badge.svg?branch=master
51
44
  .. |ci-analysis-master| image:: https://github.com/jharwell/sierra/actions/workflows/static-analysis.yml/badge.svg?branch=master
52
45
  .. |ci-coverage-master| image:: https://coveralls.io/repos/github/jharwell/sierra/badge.svg?branch=master
@@ -55,14 +48,13 @@ SIERRA (reSearch pIpEline for Reproducibility, Reusability, and Automation)
55
48
  .. |ci-analysis-devel| image:: https://github.com/jharwell/sierra/actions/workflows/static-analysis.yml/badge.svg?branch=devel
56
49
  .. |ci-coverage-devel| image:: https://coveralls.io/repos/github/jharwell/sierra/badge.svg?branch=devel
57
50
 
58
- .. |license| image:: https://img.shields.io/badge/License-GPLv3-blue.svg
59
- :target: https://www.gnu.org/licenses/gpl-3.0
51
+ .. |license| image:: https://img.shields.io/badge/License-MIT-blue.svg
60
52
 
61
53
  .. |doi| image:: https://zenodo.org/badge/125774567.svg
62
54
  :target: https://zenodo.org/badge/latestdoi/125774567
63
55
 
64
56
  .. |docs| image:: https://readthedocs.org/projects/sierra/badge/?version=master
65
- :target: https://readthedocs.org/projects/sierra/master
57
+ :target: https://sierra.readthedocs.io/en/master/
66
58
 
67
59
  .. |maintenance| image:: https://img.shields.io/badge/Maintained%3F-yes-green.svg
68
60
  :target: https://gitHub.com/jharwell/sierra/graphs/commit-activity