aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Document functions and usageJoseph Hunkeler2024-02-283-49/+376
|
* Use path_basename instead of basenameJoseph Hunkeler2024-02-261-1/+1
|
* Fixes several memory leaksJoseph Hunkeler2024-02-266-17/+77
|
* Expose the docker registry address to template engineJoseph Hunkeler2024-02-231-0/+1
|
* Implement initial driver code for docker buildsJoseph Hunkeler2024-02-232-0/+62
|
* Add mission Dockerfile templatesJoseph Hunkeler2024-02-236-1/+250
| | | | * Generate Dockerfile
* Add docker.c to projectJoseph Hunkeler2024-02-231-0/+1
|
* Add docker.h to main headerJoseph Hunkeler2024-02-231-0/+1
|
* Initial commit of docker integration codeJoseph Hunkeler2024-02-232-0/+161
|
* Fix sizeof against incorrect arrayJoseph Hunkeler2024-02-231-2/+2
|
* Fix typo in position pointer calculationJoseph Hunkeler2024-02-231-1/+2
| | | | * Not sure how it ended up as (bclose + 2 - pos) to begin with