commit
367b6e9ecc
|
@ -468,7 +468,7 @@ create a signature for. Likely you want the name of a git tag, such as `v2.0.4`.
|
|||
From the project root directory, run:
|
||||
|
||||
```
|
||||
zcash-gitian$ vagrant up --provision zcash-build
|
||||
zcash-gitian$ vagrant up zcash-build
|
||||
```
|
||||
|
||||
This will provision a Gitian host virtual machine that uses a Linux container (LXC) guest to perform
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
---
|
||||
- name: Install some common packages.
|
||||
apt:
|
||||
name: "{{ item }}"
|
||||
name: '{{ zcash_common_packages }}'
|
||||
state: present
|
||||
update_cache: yes
|
||||
cache_valid_time: 3600
|
||||
with_items: "{{ zcash_common_packages }}"
|
||||
|
|
|
@ -12,24 +12,23 @@
|
|||
|
||||
- name: Install Gitian dependencies.
|
||||
apt:
|
||||
name: "{{ item }}"
|
||||
name:
|
||||
- apt-cacher-ng
|
||||
- bridge-utils
|
||||
- curl
|
||||
- debootstrap
|
||||
- git-core
|
||||
- gnupg2
|
||||
- kpartx
|
||||
- lintian
|
||||
- lxc
|
||||
- make
|
||||
- python-cheetah
|
||||
- qemu-utils
|
||||
- ruby
|
||||
- sudo
|
||||
state: present
|
||||
update_cache: yes
|
||||
with_items:
|
||||
- apt-cacher-ng
|
||||
- bridge-utils
|
||||
- curl
|
||||
- debootstrap
|
||||
- git-core
|
||||
- gnupg2
|
||||
- kpartx
|
||||
- lintian
|
||||
- lxc
|
||||
- make
|
||||
- python-cheetah
|
||||
- qemu-utils
|
||||
- ruby
|
||||
- sudo
|
||||
|
||||
- name: Set up the Gitian build user with sudo.
|
||||
user:
|
||||
|
|
Loading…
Reference in New Issue