Jobbergate CLI client
jobbergate --help
Note
It is possible to use raw sbatch parameters in create-job-script
Use the --sbatch-params multiple times to use as many parameters as needed in the
following format --sbatch-params='-N 10'
or
--sbatch-params='--comment=some_comment'
Run:
make qa
This will run unit tests and linter.
You should verify that each of the functions of the CLI work as expected.
First, prepare your environment:
JOBBERGATE_API_ENDPOINT=https://jobbergate-api-staging.omnivector.solutions
Then, run the following tests:
- jobbergate --version
(confirm new version number)
- create-application
- create-job-script
- create-job-submission
- update-application
- update-job-script
- update-job-submission
- list-job-submissions
(FIXME: most of the above should be covered by automated system tests.)
First, decided on the scope of the release: * major - Significant new features added and/or there are breaking changes to the app * minor - New features have been added or major flaws repaired * patch - Minor flaws were repaired or trivial features were added
Next, make the release with the selected scope:
make release-<scope>
So, for example, to create a minor release, you would run:
make relase-minor
You must have permission to push commits to the main branch to create a release.
If the release script fails, contact a maintainer to debug and fix the release.
- Copyright (c) 2020-2021 OmniVector Solutions <info@omnivector.solutions>