mirror of
https://github.com/Expand-sys/CCash
synced 2026-03-22 20:47:10 +11:00
update ansible to allow for api version changes
This commit is contained in:
parent
decfd83931
commit
ed0d5c8231
2 changed files with 4 additions and 2 deletions
|
|
@ -54,7 +54,7 @@
|
||||||
ansible.builtin.command:
|
ansible.builtin.command:
|
||||||
chdir: '{{BUILD_DIR}}/CCash/build'
|
chdir: '{{BUILD_DIR}}/CCash/build'
|
||||||
cmd: |
|
cmd: |
|
||||||
cmake -DDROGON_CONFIG_LOC="{{ BUILD_DIR }}/CCash/config/config.json" -DUSER_SAVE_LOC="{{ BUILD_DIR }}/CCash/config/users.dat" ..
|
cmake -DDROGON_CONFIG_LOC="{{ BUILD_DIR }}/CCash/config/config.json" -DUSER_SAVE_LOC="{{ BUILD_DIR }}/CCash/config/users.dat" -DAPI_VERSION="{{ API_VERSION }}" -DMIN_API_SUPPORT="{{ MIN_API_SUPPORT }}" ..
|
||||||
|
|
||||||
- name: make CCash
|
- name: make CCash
|
||||||
community.general.make:
|
community.general.make:
|
||||||
|
|
|
||||||
|
|
@ -2,3 +2,5 @@
|
||||||
BUILD_DIR: '/root'
|
BUILD_DIR: '/root'
|
||||||
ADMIN_A: "admin"
|
ADMIN_A: "admin"
|
||||||
SAVE_FREQ: "2"
|
SAVE_FREQ: "2"
|
||||||
|
API_VERSION: "2"
|
||||||
|
MIN_API_SUPPORT: "1"
|
||||||
Loading…
Reference in a new issue