src.nth.io/

summaryrefslogtreecommitdiff
path: root/dendrite/build/tasks/main.yaml
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2026-04-25 19:54:49 -0500
committerLuke Hoersten <[email protected]>2026-04-25 19:54:49 -0500
commit6a8cb5f10557733f1521035d57a191b12832d634 (patch)
tree159e102eb03c7c04e7f51844fd4da136b9185fdd /dendrite/build/tasks/main.yaml
parent5d5b976e379487e8b1eccc4fc96d5920a930ff0f (diff)
Build all roles from source with versioned artifacts
- Add pleroma/build role to compile from source (OTP binaries no longer published) - Install Elixir 1.18.3 manually on Ubuntu Noble (ships 1.14, needs 1.15+) - Standardize all build roles to produce versioned .tar.gz artifacts - Add version defaults to all server roles (bin, dendrite, nostr/relayer) - Switch server roles from get_url to unarchive for .tar.gz installs - Add build_srv_dir variable to all build roles - Deploy pleroma styles.json so custom FE themes appear in picker - Fix pleroma OTP install: version check, root ownership, auto-cleanup old releases - Fix pleroma config: log level :warn -> :warning, remove availableStyles - Add wait_for grafana readiness before dashboard install - Set minecraft ops changed_when: false
Diffstat (limited to 'dendrite/build/tasks/main.yaml')
-rw-r--r--dendrite/build/tasks/main.yaml5
1 files changed, 2 insertions, 3 deletions
diff --git a/dendrite/build/tasks/main.yaml b/dendrite/build/tasks/main.yaml
index 6787622..96c3eab 100644
--- a/dendrite/build/tasks/main.yaml
+++ b/dendrite/build/tasks/main.yaml
@@ -27,7 +27,7 @@
- name: check if dendrite build exists
stat:
- path: "{{dendrite_build_dir}}/bin/dendrite"
+ path: "{{dendrite_srv_dir}}/dendrite-{{dendrite_version}}.tar.gz"
register: build_file
- name: build dendrite
@@ -42,7 +42,6 @@
path: "{{dendrite_srv_dir}}"
mode: "0755"
state: "directory"
- when: not build_file.stat.exists
- name: create a gz archive of dendrite bins
become: yes
@@ -52,6 +51,6 @@
- "{{dendrite_build_dir}}/bin/dendrite-demo-pinecone"
- "{{dendrite_build_dir}}/bin/dendrite-demo-yggdrasil"
- "{{dendrite_build_dir}}/bin/furl"
- dest: "{{dendrite_srv_dir}}/dendrite.tar.gz"
+ dest: "{{dendrite_srv_dir}}/dendrite-{{dendrite_version}}.tar.gz"
format: "gz"
when: not build_file.stat.exists