Merge pull request 'fix: add templating support in configuration' (#18) from feature/15-add-templating-support-in-configuration into develop
Some checks failed
continuous-integration/drone/push Build is failing

Reviewed-on: #18
This commit is contained in:
Glenn Y. Rolland 2023-11-18 22:34:21 +00:00
commit d9db2380d9
4 changed files with 21 additions and 4 deletions

View file

@ -5,7 +5,7 @@ name: default
steps: steps:
- name: build:binary - name: build:binary
image: crystallang/crystal:1.7.3 image: crystallang/crystal:1.10.1-alpine
environment: environment:
PACKAGE_BASENAME: mfm_linux_amd64 PACKAGE_BASENAME: mfm_linux_amd64
volumes: volumes:
@ -13,11 +13,16 @@ steps:
path: /_cache path: /_cache
commands: commands:
- pwd - pwd
- apt-get update && # - |
apt-get install -y cmake g++ libevent-dev libpcre3-dev libyaml-dev # apt-get update && \
# apt-get install -y \
# cmake g++ \
# libevent-dev libpcre3-dev \
# libyaml-dev liblzma-dev
- shards install - shards install
- shards build --production --static - shards build --production --static
- strip bin/mfm - strip bin/mfm
- ./bin/mfm --version
- mkdir -p /_cache/bin - mkdir -p /_cache/bin
- cp -r bin/mfm /_cache/bin/$PACKAGE_BASENAME - cp -r bin/mfm /_cache/bin/$PACKAGE_BASENAME

View file

@ -1,5 +1,9 @@
version: 2.0 version: 2.0
shards: shards:
crinja:
git: https://github.com/straight-shoota/crinja.git
version: 0.8.1
shellwords: shellwords:
git: https://github.com/sztheory/shellwords-crystal.git git: https://github.com/sztheory/shellwords-crystal.git
version: 0.1.0 version: 0.1.0

View file

@ -18,6 +18,8 @@ targets:
# Short description of gx-vault # Short description of gx-vault
dependencies: dependencies:
crinja:
github: straight-shoota/crinja
shellwords: shellwords:
github: szTheory/shellwords-crystal github: szTheory/shellwords-crystal

View file

@ -3,6 +3,8 @@
# SPDX-FileCopyrightText: 2023 Glenn Y. Rolland <glenux@glenux.net> # SPDX-FileCopyrightText: 2023 Glenn Y. Rolland <glenux@glenux.net>
# Copyright © 2023 Glenn Y. Rolland <glenux@glenux.net> # Copyright © 2023 Glenn Y. Rolland <glenux@glenux.net>
require "crinja"
require "./filesystems" require "./filesystems"
module GX module GX
@ -81,7 +83,11 @@ module GX
end end
private def load_filesystems(config_path : String) private def load_filesystems(config_path : String)
yaml_data = YAML.parse(File.read(config_path)) file_data = File.read(config_path)
# FIXME: render template on a value basis (instead of global)
file_patched = Crinja.render(file_data, {"env" => ENV.to_h})
yaml_data = YAML.parse(file_patched)
vaults_data = yaml_data["filesystems"].as_a vaults_data = yaml_data["filesystems"].as_a
vaults_data.each do |filesystem_data| vaults_data.each do |filesystem_data|