diff options
author | Vincent Ambo <tazjin@google.com> | 2019-09-30T16·40+0100 |
---|---|---|
committer | Vincent Ambo <github@tazj.in> | 2019-10-03T12·21+0100 |
commit | 87e196757b4e0cb22ec9c9f5ee8475573597382a (patch) | |
tree | 5132e6c955bb3218e913e3f840b2af3e3b0a6c22 /tools/nixery/server/config/config.go | |
parent | 61269175c046681711cf88370d220eb97cd621cf (diff) |
feat(server): Reimplement creation & uploading of layers
The new build process can now call out to Nix to create layers and upload them to the bucket if necessary. The layer cache is populated, but not yet used.
Diffstat (limited to 'tools/nixery/server/config/config.go')
-rw-r--r-- | tools/nixery/server/config/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/nixery/server/config/config.go b/tools/nixery/server/config/config.go index ac8820f23116..30f727db1112 100644 --- a/tools/nixery/server/config/config.go +++ b/tools/nixery/server/config/config.go @@ -60,7 +60,7 @@ func getConfig(key, desc, def string) string { return value } -// config holds the Nixery configuration options. +// Config holds the Nixery configuration options. type Config struct { Bucket string // GCS bucket to cache & serve layers Signing *storage.SignedURLOptions // Signing options to use for GCS URLs |