diff options
author | TheCharlatan <seb.kung@gmail.com> | 2019-06-11 20:08:53 +0200 |
---|---|---|
committer | TheCharlatan <seb.kung@gmail.com> | 2019-06-26 01:21:59 +0200 |
commit | afbf05bc58a865818c4a437bf5a2ac76930f462f (patch) | |
tree | 792e85b2ebc666c105c75140def63a598c1e5077 /contrib/gitian/README.md | |
parent | Merge pull request #5583 (diff) | |
download | monero-afbf05bc58a865818c4a437bf5a2ac76930f462f.tar.xz |
Add option to run gitian-build.py on non-debian os
This commits adds the `--no-apt` flag to the gitian-build.py script.
This allows gitian builds to be run without root access and non-debian
based operating systems.
Diffstat (limited to 'contrib/gitian/README.md')
-rw-r--r-- | contrib/gitian/README.md | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/contrib/gitian/README.md b/contrib/gitian/README.md index 1efc87e0a..3fc26354c 100644 --- a/contrib/gitian/README.md +++ b/contrib/gitian/README.md @@ -80,14 +80,23 @@ Building in docker does not require much setup. Install docker on your host, the ```bash sudo apt-get install git make curl -sudo usermod -aG docker gitianuser ``` +Optionally add yourself to the docker group. Note that this will give docker root access to your system. + +```bash +sudo usermod -aG docker gitianuser +``` Manual and Building ------------------- The instructions below use the automated script [gitian-build.py](gitian-build.py) which only works in Ubuntu. +======= +The script automatically installs some packages with apt. If you are not running it on a debian-like system, pass `--no-apt` along with the other +arguments to it. It calls all available .yml descriptors, which in turn pass the build configurations for different platforms to gitian. +The instructions below use the automated script [gitian-build.py](gitian-build.py) which is tested to work on Ubuntu. + It calls all available .yml descriptors, which in turn pass the build configurations for different platforms to gitian. Help for the build steps taken can be accessed with `./gitian-build.py --help`. |