Switch to storing Git repositories in a table
Rather than just storing the URL in the guix_revisions and load_new_guix_revision_jobs tables. This will help when storing more information like tags and branches in the future.
This commit is contained in:
parent
051962b54d
commit
ce4c3c6ed3
12 changed files with 246 additions and 77 deletions
|
|
@ -42,6 +42,7 @@ SOURCES = \
|
|||
guix-data-service/model/build-status.scm \
|
||||
guix-data-service/model/build.scm \
|
||||
guix-data-service/model/derivation.scm \
|
||||
guix-data-service/model/git-repository.scm \
|
||||
guix-data-service/model/guix-revision-package-derivation.scm \
|
||||
guix-data-service/model/guix-revision.scm \
|
||||
guix-data-service/model/package-derivation.scm \
|
||||
|
|
@ -58,7 +59,8 @@ SOURCES = \
|
|||
TEST_EXTENSIONS = .scm
|
||||
|
||||
TESTS = \
|
||||
tests/model-derivation.scm
|
||||
tests/model-derivation.scm \
|
||||
tests/model-git-repository.scm
|
||||
|
||||
AM_TESTS_ENVIRONMENT = abs_top_srcdir="$(abs_top_srcdir)"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue