summaryrefslogtreecommitdiffstats
path: root/src/db
AgeCommit message (Expand)Author
2020-12-03Impl Debug for db::models::ArtifactMatthias Beyer
2020-12-03Add db::models::Artifact::path_buf() helper functionMatthias Beyer
2020-12-03Implement insertion code for tracking artifacts in databaseMatthias Beyer
2020-12-03An Artifact belongs to a jobMatthias Beyer
2020-12-03Add flag to artifacts table, whether artifact is released or notMatthias Beyer
2020-12-03Cleanup importsMatthias Beyer
2020-11-26Update dependency: clap: 3.0.0-beta.1 -> 3.0.0-beta.2Matthias Beyer
2020-11-16Move loading of Submit object for a specific uuid to helper methodMatthias Beyer
2020-11-16Make job belong to Endpoint, Image, Package and SubmitMatthias Beyer
2020-11-16Make diesel mapping from environment variables table to job tableMatthias Beyer
2020-11-16Add model type for job to env mappingMatthias Beyer
2020-11-16Return Job object when created in databaseMatthias Beyer
2020-11-13Add uuid field to "job" tableMatthias Beyer
2020-11-13Add flag to only show jobs of one specific submitMatthias Beyer
2020-11-13Add logging: trace!() submit object after creating submit entry in databaseMatthias Beyer
2020-11-13Add debug output when creating new Job in databaseMatthias Beyer
2020-11-13Make model::Submit derive Clone for easy passing aroundMatthias Beyer
2020-11-13Add model definition for JobMatthias Beyer
2020-11-13Add model definition for EndpointMatthias Beyer
2020-11-10Merge branch 'db-cli-to-command'Matthias Beyer
2020-11-10Change Tree implementation to be a Vec<_>Matthias Beyer
2020-11-10Move DB cli interface to proper placeMatthias Beyer
2020-11-08Do not pass objects not neededMatthias Beyer
2020-11-08Remove unused "mut" keywordMatthias Beyer
2020-11-08Remove unused imports, sort importsMatthias Beyer
2020-11-06Add logging output and error context messagesMatthias Beyer
2020-11-06Fix: Do not actually write package tree into databaseMatthias Beyer
2020-11-06Let Submit::create() return only one Submit objectMatthias Beyer
2020-11-06Let Image::create_or_fetch() take an &ImageName instead of &strMatthias Beyer
2020-11-05Add model types for EnvVar insertingMatthias Beyer
2020-11-05Add Submit model implementationMatthias Beyer
2020-11-05Remove idea of "buildplan"Matthias Beyer
2020-11-05Move create-or-fetch logic into functions on model typesMatthias Beyer
2020-11-05Add NewImage type for inserting image into databaseMatthias Beyer
2020-11-05Add NewGitHash for inserting git hashes into databaseMatthias Beyer
2020-11-05Add NewPackage type for adding a package to the databaseMatthias Beyer
2020-11-05Add model for submit storingMatthias Beyer
2020-11-05Add model for Package storingMatthias Beyer
2020-11-05Add model for git hash storingMatthias Beyer
2020-11-03Simplify code by removing repeating partsMatthias Beyer
2020-11-03Add subcommand to list images from databaseMatthias Beyer
2020-11-03Add flag to print output as CSVMatthias Beyer
2020-11-03Do the right thing when output is a pipeMatthias Beyer
2020-11-03Add subcommand to list env variables from databaseMatthias Beyer
2020-11-03Add subcommand to show all artifacts from dbMatthias Beyer
2020-11-03Add model: ArtifactMatthias Beyer
2020-11-03Add DB interface module for talking to the DB directlyMatthias Beyer
2020-11-03Add DB CLI setupMatthias Beyer
2020-11-03Add DB connection establishingMatthias Beyer