Skip to content

Latest commit

 

History

History
49 lines (40 loc) · 2.88 KB

README.md

File metadata and controls

49 lines (40 loc) · 2.88 KB

NumPEx Software Catalog

This repo centralizes the list of projects following the NumPEx Software Integration guidelines.

Human-readable version of the catalog is available on this website.

How to add your own software into that catalog ?

  1. Fork this repo and create a new branch
  2. Perform a self assesment of your software module with respect to the NumPEx Software Guidelines
  3. Record the result into a markdown file, named after the name of your software module (e.g. my_module_name.md) and add this file in the self-assessment folder of your fork
  4. Update main-list/projets.json in your fork, by adding an entry for each package you want to include in the NumPEx SW Catalog:
  {
    "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod\ntempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim\nveniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea\ncommodo consequat. Duis aute irure dolor in reprehenderit in voluptate\nvelit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat\ncupidatat non proident, sunt in culpa qui officia deserunt mollit anim id\nest laborum.\n",
    "discussion": "https://example.com/discussion",
    "documentation": "https://example.com/",
    "guix_package": "https://example.com/guix",
    "name": "My Super Software",
    "spack_package": "https://example.com/spack"
  }
  1. Initiate a pull request for your changes
  2. After screening and evaluation by NumPEx team, your software will be added into the catalog.

Information for Maintainers

The website generates a human-readable of the SW catalog by dynamically parsing the latest commit for the projects.json file in the main branch. Please be aware that an incorrect JSON file in the main branch may cause erroneous rendering or even undefined behaviour (e.g. webbrowser crash) when users access the catalog page from the website.

Workflow named ci aims to validate the JSON file to be proper JSON, and to check for missing fields. It is triggered for each pull request, and for each commit/ direct push in the repo. Make sure to fix the JSON file asap if the CI worklows fails after a commit on the main branch.

Repo structure

.
|
├── main-list
│   ├── projects-schema.json  
│   └── projects.json                  => THE LIST CONTAINING ALL PROJECTS
|
├── self-assessment                    => THE FOLDER CENTRALIZING SELF-ASSESSMENTS
│   ├── some-sw-module.md
│   └── another_module.md             
|
├── .github
│   └── workflows                      => CI WORKFLOWS
|
├── README.md