aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/build.sh
Commit message (Collapse)AuthorAgeFilesLines
* build.sh bash script cleanupChristian Parpart2018-12-101-15/+13
| | | | | | | | | | | | * use `set -e` to abort script execution when error codes fail (and haven't been checked) * use [[ ]] instead of [ ] or test. * use ROOTDIR/BUILDDIR variables for better readability * use mktemp in order to avoid accidental name clashes. * use `make install` instead of `install ...` as cleaner installation process * this however doesn't install soltest anymore, which I believe is right, as normal users should not need it installed in their system. Those who want to run the test suite, can do so manually * allow optional passing of more additional custom args to cmake
* Review fixesYuriy Kashnikov2017-12-061-4/+5
|
* Handle git release tag properlyYuriy Kashnikov2017-12-061-1/+5
| | | | | | Build process will check current commit and if it is tagged starting with a `v` then it will create `prerelease.txt` file in the top directory.
* Ensure that all commands succed and move back to rootAlex Beregszaszi2017-02-091-6/+12
|
* implement a build scriptRJ Catalano2017-02-031-0/+17
Signed-off-by: RJ Catalano <rj@monax.io>