From 04e0835f29b6d21e8491ba6f35092f1ab860263d Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sun, 18 Feb 2024 10:00:47 -0500 Subject: Extract git repository information * First pass; this will eventually be used to rewite exact commit refs in YAML delivery files --- include/deliverable.h | 2 ++ include/utils.h | 1 + 2 files changed, 3 insertions(+) (limited to 'include') diff --git a/include/deliverable.h b/include/deliverable.h index b528c46..85cda6b 100644 --- a/include/deliverable.h +++ b/include/deliverable.h @@ -129,6 +129,8 @@ struct Delivery { char *repository; ///< Git repository of package char *script; ///< Commands to execute char *build_recipe; ///< Conda recipe to build (optional) + char *repository_info_ref; ///< Git commit hash + char *repository_info_tag; ///< Git tag (first parent) struct Runtime runtime; ///< Environment variables specific to the test context } tests[1000]; ///< An array of tests diff --git a/include/utils.h b/include/utils.h index f0400fb..d32a123 100644 --- a/include/utils.h +++ b/include/utils.h @@ -33,6 +33,7 @@ char *find_program(const char *name); int touch(const char *filename); int git_clone(struct Process *proc, char *url, char *destdir, char *gitref); char *git_describe(const char *path); +char *git_rev_parse(const char *path, char *args); int path_store(char **destptr, size_t maxlen, const char *base, const char *path); #define OMC_MSG_SUCCESS 0 -- cgit