forked from cosmos/cosmos-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reproducible builds CI integration (cosmos#4337)
Enable reproducible builds on master. Overhaul build script, update docs accordingly.
- Loading branch information
Alessio Treglia
authored
May 16, 2019
1 parent
e09ebf9
commit 4b7d295
Showing
3 changed files
with
149 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,7 @@ Run the following command to launch a build for `linux` and sign the final build | |
report (replace `[email protected]` with the GPG identity you want to sign the report with): | ||
|
||
``` | ||
./cmd/gaia/contrib/gitian-build.sh -s [email protected] linux `pwd` | ||
./cmd/gaia/contrib/gitian-build.sh -s [email protected] linux | ||
``` | ||
|
||
The above command generates two directories in the current working directory: | ||
|
@@ -57,7 +57,7 @@ for platform in darwin linux windows; do ./cmd/gaia/contrib/gitian-build.sh -s u | |
If you want to generate unsigned builds, just remove the option `-s` from the command line: | ||
|
||
``` | ||
./cmd/gaia/contrib/gitian-build.sh linux `pwd` | ||
./cmd/gaia/contrib/gitian-build.sh linux | ||
``` | ||
|
||
At the end of the procedure, build results can be found in the `./gaia.sigs` directory: | ||
|