-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reproducible buildsystem #7247
Reproducible buildsystem #7247
Conversation
This aims to provide a simple Docker-based mechanism for application developers to provide reproducible builds. Unlike `gaia`'s current reproducible buildsystem, this does not depend on external tools, e.g. `gitian-builder`. `build-simd-linux` now builds `simd` in a deterministic Linux container.
fbcc19e
to
4e78c78
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
utACK. Love this new update. Does this mean we will be removing gitian?
@marbar3778 dixit:
Yes, the ultimate objective of this is removing gitian altogether. Juicy and sweet extra bit: this buildsystem is actually much faster than the old gitian-based one. |
@marbar3778 building an app is even easier now - look at |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What exactly is simd?
ledger enabled means using cgo, correct?
Codecov Report
@@ Coverage Diff @@
## master #7247 +/- ##
==========================================
- Coverage 56.22% 50.46% -5.77%
==========================================
Files 584 284 -300
Lines 40515 20451 -20064
==========================================
- Hits 22781 10320 -12461
+ Misses 15816 9298 -6518
+ Partials 1918 833 -1085 |
This reverts commit 38c3c66.
#!/bin/bash set -ue Expect the following envvars to be set:- APP- VERSION- COMMIT- TARGET_OS- LEDGER_ENABLED- DEBUGSource builder's functions library. /usr/local/share/tendermint/buildlib.sh These variables are now available- BASEDIR- OUTDIRBuild for each os-architecture pairfor platform in ${TARGET_PLATFORMS} ; do
done Generate and display build report.generate_build_report |
This aims to provide a simple Docker-based mechanism for application
developers to provide reproducible builds. Unlike
gaia
's currentreproducible buildsystem, this does not depend on external tools,
e.g.
gitian-builder
.build-simd-linux
now buildssimd
in a deterministic Linux container.Before we can merge this PR, please make sure that all the following items have been
checked off. If any of the checklist items are not applicable, please leave them but
write a little note why.
docs/
) or specification (x/<module>/spec/
)godoc
comments.Unreleased
section inCHANGELOG.md
Files changed
in the Github PR explorerCodecov Report
in the comment section below once CI passes