forked from vieter-v/vieter
Builder now gets list of repos from server
parent
fe98112f79
commit
6194a3f408
|
@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
* Better environment variable support
|
||||
* Each env var can now be provided from a file by appending it with `_FILE`
|
||||
& passing the path to the file as value
|
||||
* API for managing Git repositories to build
|
||||
|
||||
## Fixed
|
||||
|
||||
|
|
11
src/build.v
11
src/build.v
|
@ -8,16 +8,19 @@ import os
|
|||
import json
|
||||
import server
|
||||
import env
|
||||
import net.http
|
||||
|
||||
const container_build_dir = '/build'
|
||||
|
||||
fn build() ? {
|
||||
conf := env.load<env.BuildConfig>() ?
|
||||
|
||||
// Read in the repos from a json file
|
||||
filename := os.join_path_single(conf.repo_dir, 'repos.json')
|
||||
txt := os.read_file(filename) ?
|
||||
repos := json.decode([]server.GitRepo, txt) ?
|
||||
// We get the repos list from the Vieter instance
|
||||
mut req := http.new_request(http.Method.get, '${conf.address}/api/repos', '') ?
|
||||
req.add_custom_header('X-Api-Key', conf.api_key) ?
|
||||
|
||||
res := req.do() ?
|
||||
repos := json.decode([]server.GitRepo, res.text) ?
|
||||
|
||||
mut commands := [
|
||||
// Update repos & install required packages
|
||||
|
|
Loading…
Reference in New Issue