summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2023-06-24 09:29:11 +0300
committerLars Wirzenius <liw@liw.fi>2023-06-24 09:29:11 +0300
commitd57ce761efd2912ece838d1fa75951679b875f8d (patch)
tree1159c7ec9fd17cd621f8b1a31399e169fe53e8ea
parenteb1948c6f9c655241cf64e7456b489bc658954a5 (diff)
downloadambient-ci-d57ce761efd2912ece838d1fa75951679b875f8d.tar.gz
feat: add extra playbook for Subplot
In the long run this needs to live in Subplot, but for convenience, it's here for now. Sponsored-by: author
-rw-r--r--subplot.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/subplot.yml b/subplot.yml
new file mode 100644
index 0000000..a1455e9
--- /dev/null
+++ b/subplot.yml
@@ -0,0 +1,22 @@
+- hosts: image
+ tasks:
+
+ - name: "install tools for Rust and Subplot"
+ apt:
+ name:
+ - build-essential
+ - cmake
+ - curl
+ - graphviz
+ - librsvg2-bin
+ - plantuml
+ - daemonize
+ - procps
+
+ - name: "install rustup"
+ shell: |
+ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > /tmp/rustup.sh
+ sh /tmp/rustup.sh -y --no-modify-path
+
+ vars:
+ ansible_python_interpreter: /usr/bin/python3