aboutsummaryrefslogtreecommitdiff
path: root/src/deliverable.c
Commit message (Collapse)AuthorAgeFilesLines
* Encapsulate the tox.ini generation.Joseph Hunkeler2024-03-221-8/+8
| | | | * This avoids telling the user we're about to modify the tox.ini if there's no real work to be done.
* Free resources on errorJoseph Hunkeler2024-03-221-4/+9
| | | | * TODO: Use a goto for this one.
* Increase command string size.Joseph Hunkeler2024-03-221-1/+1
| | | | * OMC_BUFSIZ should be long enough to accommodate larger than normal paths.
* Return on error immediately to avoid an invalid readJoseph Hunkeler2024-03-221-1/+0
|
* Remove the user-facing "${VAR}" notation.Joseph Hunkeler2024-03-221-10/+14
| | | | * runtime_* functions will continue to use this functionality in internally to support strings such "PATH=/example.bin:${PATH}"
* Free more members from the delivery contextJoseph Hunkeler2024-03-221-0/+4
| | | | | | | * Delivery.storage.output_dir * Delivery.storage.build_docker_dir * Delivery.deploy.jfrog[n].repo * Delivery.deploy.jfrog[n].dest
* Dynamically allocate Delivery.system.platform array.Joseph Hunkeler2024-03-221-0/+5
| | | | * This avoids compiler warnings about passing the address to a stack-allocated chunk of member in tpl_register.
* Use GENERIC_ARRAY_FREE instead of split_free()Joseph Hunkeler2024-03-221-1/+2
|
* Free more dangling resourcesJoseph Hunkeler2024-03-221-0/+1
| | | | | * Delivery.meta.based_on * Delivery.storage.results_dir
* Free more dangling resourcesJoseph Hunkeler2024-03-221-0/+1
| | | | | * Delivery.meta.based_on * Delivery.storage.results_dir
* Add missing cleanupJoseph Hunkeler2024-03-181-1/+4
| | | | | * Closes dangling file streams scattered throughout * Frees pointers related to Delivery.docker missed during implementation
* Add fix_tox_conf functionJoseph Hunkeler2024-03-141-0/+19
| | | | * If the user calls tox in a test script like so: tox {{ workaround.tox_posargs }}, then a temporary tox configuration will be generated and the appropriate arguments to use it will be injected into tox's command line arguments
* We're executing the test, so tell the userJoseph Hunkeler2024-03-141-1/+2
|
* Fix bug that prevented package deferrals from proceeding when package names ↵Joseph Hunkeler2024-03-141-2/+2
| | | | contained URLs or version specs
* Splits OMC directory creation into two stagesJoseph Hunkeler2024-03-141-7/+15
| | | | | | * Stage 1: Initialize base directories (omc/root, omc/build, etc) * Stage 2: Initialize output directories (omc/output, etc) * Output directory now provides a unique parent directory name to avoid clobbering previously delivered data
* Pretty-print pytest xml results (if xmllint is present)Joseph Hunkeler2024-03-141-0/+31
| | | | | | | * Adds Delivery.storage.results_dir member * Exposes storage.results_dir to templates * This is to make the test results human-readable * xmllint is optional. If it isn't installed it isn't a big deal.
* 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
* Use do/while in guard_* macros to make them behave more like functionsJoseph Hunkeler2024-03-101-74/+74
|
* Replace getter_* and conv_* macros with static functions.Joseph Hunkeler2024-03-101-186/+160
|
* Fix python_compact not getting updated when target python version changedJoseph Hunkeler2024-03-081-3/+6
|
* Makes docker builds, artifactory uploads, and testing optional via CLI ↵Joseph Hunkeler2024-03-081-2/+5
| | | | | | | arguments. * Remove [DEBUG] from debug summary * Add enable_* states to debug summary
* 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
|
* 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-061-42/+44
| | | | | * Consolidate jfrog and docker into deploy member * Fix template registers
* Add paths for build_docker_dir and docker_artifact_dirJoseph Hunkeler2024-03-061-0/+2
|
* Replace raw LF with LINE_SEP defineJoseph Hunkeler2024-03-061-6/+6
|
* Fix memory corruption in runtime_set and tpl_renderJoseph Hunkeler2024-03-041-6/+2
|
* Prototypes documentationJoseph Hunkeler2024-03-041-54/+1
| | | | | | | 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
* xmkstemp allow setting file modeJoseph Hunkeler2024-03-041-1/+1
| | | | * add usage comment function
* Free docker membersJoseph Hunkeler2024-02-281-0/+3
|
* Use path_basename instead of basenameJoseph Hunkeler2024-02-261-1/+1
|
* Fixes several memory leaksJoseph Hunkeler2024-02-261-16/+60
|
* Implement initial driver code for docker buildsJoseph Hunkeler2024-02-231-0/+52
|
* Extract git repository informationJoseph Hunkeler2024-02-181-1/+6
| | | | * First pass; this will eventually be used to rewite exact commit refs in YAML delivery files
* Fix recently introduced pathing issueJoseph Hunkeler2024-02-181-2/+2
| | | | * "conda" and "wheels" directories are supposed to in the "packages" directory, not the $output_dir root
* Implement build_name_fmt and build_number_fmt mission rulesJoseph Hunkeler2024-02-181-2/+14
| | | | * Artifactory centric
* Fix garbage file creationJoseph Hunkeler2024-02-161-3/+10
| | | | | | * zero out proc structure * remove erroneous if statement that prevented OMC_JF_REPO from working correctly * fail if the artifactory repo is an empty string
* Compatibility changesJoseph Hunkeler2024-02-131-2/+12
|
* Use guard_free macroJoseph Hunkeler2024-02-131-4/+4
|
* Use Globals.jfrog.repo when OMC_JF_REPO is unsetJoseph Hunkeler2024-02-131-4/+8
| | | | | * Reworded warnings about OMC_JF_REPO and [deploy:artifaction] config section * Do not push build information on bad config state
* Render template strings in test shell scriptJoseph Hunkeler2024-02-131-1/+3
|
* Remove whitespaceJoseph Hunkeler2024-02-131-1/+1
|
* Fix empty statement warningJoseph Hunkeler2024-02-131-1/+1
|
* Implement delivery_mission_render_filesJoseph Hunkeler2024-02-131-19/+60
|
* Generate release string after parsing release format stringJoseph Hunkeler2024-02-131-6/+5
|
* Generate compact python version immediately after reading it from the configJoseph Hunkeler2024-02-131-0/+1
|
* Allow settings the default artifactory repository in main configuration fileJoseph Hunkeler2024-02-131-0/+5
|
* Enable multiple named artifact upload sections in delivery contextJoseph Hunkeler2024-02-121-38/+82
|