blob: 2a296354dff29a626cad070fc01dfb276d212202 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
---
- name: install cargo
become: yes
apt: name="cargo"
- name: unarchive bin
unarchive:
remote_src: yes
src: "{{bin_tar}}"
dest: "{{build_work_dir}}/"
creates: "{{bin_build_dir}}"
- name: check if bin build exists
stat:
path: "{{bin_srv_dir}}/bin-{{bin_version}}.tar.gz"
register: build_file
- name: build bin
command: "cargo build --release"
args:
chdir: "{{bin_build_dir}}"
when: not build_file.stat.exists
- name: create build server dir
become: yes
file:
path: "{{bin_srv_dir}}"
mode: "0755"
state: "directory"
- name: create gz archive of bin
become: yes
archive:
path: "{{bin_build_dir}}/target/release/bin"
dest: "{{bin_srv_dir}}/bin-{{bin_version}}.tar.gz"
format: "gz"
# force a real tar for the single binary; the module otherwise gzips a lone
# file into a bare .gz that the server's unarchive can't extract.
force_archive: true
when: not build_file.stat.exists
|