aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Replace ini_show with ini_writeJoseph Hunkeler2024-03-142-6/+27
| | | | * One can still display the ini configuration by using ini_show(iniptr, stdout);
* BugfixJoseph Hunkeler2024-03-141-5/+6
| | | | | | * When the result string grew larger than the initial_size, the function would return NULL even if realloc succeeded * Replaces fgets with fread to ensure all data returned by the program is consumed. * The line buffer is zeroed for each iteration
* Remove "OMC ::" from build name.Joseph Hunkeler2024-03-143-3/+3
| | | | * TODO: Preface the build name with OMC at upload-time.
* Only set continue_on_error and always_update_base if not already set by CLI ↵Joseph Hunkeler2024-03-121-4/+9
| | | | | | argument * Those bare variables were useful after all
* Wording and indentJoseph Hunkeler2024-03-121-2/+3
|
* Exit on invalid argument inputJoseph Hunkeler2024-03-111-2/+1
|
* Set globals struct values as intendedJoseph Hunkeler2024-03-111-7/+2
| | | | * Bare variables predated the globals struct. This better aligns with how options are consumed throughout the program
* Consolidate argument parsing loop controlJoseph Hunkeler2024-03-111-7/+3
| | | | * Fix missing increment of positional argument loop
* Fix missing break statement in OPT_NO_TESTING caseJoseph Hunkeler2024-03-111-0/+1
|
* Make opt_short long enough to fix ARG outputJoseph Hunkeler2024-03-111-1/+1
|
* Change "config" and "python" so their arguments are requiredJoseph Hunkeler2024-03-111-3/+3
| | | | * Fixes update-base argument type. It was never supposed to take an argument.
* Print ARG next to short option output in usage statementJoseph Hunkeler2024-03-111-0/+3
|
* Prevent printing non-existent short options in usage statementJoseph Hunkeler2024-03-111-1/+1
|
* Use do/while in guard_* macros to make them behave more like functionsJoseph Hunkeler2024-03-1014-142/+142
|
* Replace getter_* and conv_* macros with static functions.Joseph Hunkeler2024-03-101-186/+160
|
* Override python version _before_ parsing the configs and rendering template ↵Joseph Hunkeler2024-03-081-8/+8
| | | | strings
* Fix python_compact not getting updated when target python version changedJoseph Hunkeler2024-03-082-11/+14
|
* Makes docker builds, artifactory uploads, and testing optional via CLI ↵Joseph Hunkeler2024-03-083-11/+49
| | | | | | | arguments. * Remove [DEBUG] from debug summary * Add enable_* states to debug summary
* Remove TODOs from readme templatesJoseph Hunkeler2024-03-083-3/+0
|
* Append the release name to README artifacts to prevent documentation clobbering.Joseph Hunkeler2024-03-083-3/+3
| | | | * It may be the case that we'll have to break artifacts down into separate arch/OS directories if this turns out to be too ugly.
* Add CLI option to disable line bufferingJoseph Hunkeler2024-03-071-1/+10
|
* Zero argument bufferJoseph Hunkeler2024-03-071-0/+2
|
* Add OMC_ROOT environment to control where OMC writes its files toJoseph Hunkeler2024-03-071-1/+11
|
* Add deploy:docker outline.Joseph Hunkeler2024-03-061-1/+14
| | | | * Add/fix deploy template variables
* Enable building docker imageJoseph Hunkeler2024-03-061-0/+3
|
* Set global.jfrog.repo through config, or environment variableJoseph Hunkeler2024-03-061-0/+9
| | | | * This used to be the case but the code was removed at some point; most likely by accident.
* Implement docker delivery configurationJoseph Hunkeler2024-03-061-6/+59
| | | | | * Copy dockerfile and delivery file to the build directory * Add docker.test_script key. Lets you run smoke tests against the freshly built image
* Refactor deployment structureJoseph Hunkeler2024-03-063-59/+65
| | | | | * Consolidate jfrog and docker into deploy member * Fix template registers
* Add paths for build_docker_dir and docker_artifact_dirJoseph Hunkeler2024-03-062-0/+4
|
* Replace raw LF with LINE_SEP defineJoseph Hunkeler2024-03-061-6/+6
|
* Reset console color before writingJoseph Hunkeler2024-03-061-0/+1
|
* Store rendered Dockerfile template in the docker build directoryJoseph Hunkeler2024-03-063-3/+3
|
* Remove pointless ARGsJoseph Hunkeler2024-03-063-18/+3
| | | | * CONDA_VERSION and CONDA_BUILD_VERSION are never used in a meaningful way
* docker_save function will pipe output of "docker save" to a compression ↵Joseph Hunkeler2024-03-062-3/+26
| | | | program if requested
* docker_script function now returns exit code from processJoseph Hunkeler2024-03-061-7/+14
| | | | * Pipe buffer is zeroed each iteration
* emit "Executing: [cmd]" when OMC_DOCKER_QUIET flag is not presentJoseph Hunkeler2024-03-061-1/+3
|
* Fix path_basenameJoseph Hunkeler2024-03-061-1/+1
| | | | * Return original pointer when path separator is not present
* Use relative paths in documentationJoseph Hunkeler2024-03-061-1/+1
|
* Merge pull request #4 from jhunkeler/add-badgesJoseph Hunkeler2024-03-041-0/+2
|\ | | | | Add actions and rtd badge
| * Add actions and rtd badgeJoseph Hunkeler2024-03-041-0/+2
|/
* Merge pull request #3 from spacetelescope/broken-rtdJoseph Hunkeler2024-03-046-6/+74
|\ | | | | RTD
| * RTD configJoseph Hunkeler2024-03-044-3/+16
| |
| * RTD integration beginsJoseph Hunkeler2024-03-046-6/+61
|/
* Ignore built documentationJoseph Hunkeler2024-03-041-1/+3
|
* Fix memory corruption in runtime_set and tpl_renderJoseph Hunkeler2024-03-043-16/+11
|
* Remove semicolon from call to guard_freeJoseph Hunkeler2024-03-041-1/+1
|
* Prototypes documentationJoseph Hunkeler2024-03-0413-139/+479
| | | | | | | Includes minor changes: * Rename jfrt_upload_set_defaults to jfrt_upload_init * Move jfrt_auth_init to artifactory.c * Adds missing error handling to git_describe and git_rev_parse
* Actually exit when a path is /, instead of removing the entire filesystemJoseph Hunkeler2024-03-041-0/+1
|
* xmkstemp allow setting file modeJoseph Hunkeler2024-03-045-6/+21
| | | | * add usage comment function
* Free docker membersJoseph Hunkeler2024-02-281-0/+3
|