aboutsummaryrefslogtreecommitdiff
path: root/scripts (follow)
Commit message (Collapse)AuthorAgeFilesLines
* read VERSION after it is generated by update scriptBrent Cook2024-04-081-1/+2
|
* use a specific version number in test scriptsBrent Cook2024-04-081-4/+5
| | | | | This avoids issue reported in #1041 with file glob confusing cd. Also remove extra newline from VERSION when update.sh runs.
* add ventura and arm64 test targets, remove big surBrent Cook2023-07-041-26/+57
| | | | | | | This reworks the macOS github actions to target Apple silicon for tests. To simplify the test matrix, removing big sur and adding ventura. Also some cleanups to the test script. We really don't need the 'x' workaround for non-POSIX shells, and it got confusing writing "xx86_64".
* make it simpler to test on a non-Linux systemBrent Cook2023-05-271-3/+5
|
* Add CI workflow to run tests with ASM disabledJoshua Sing2023-04-291-7/+9
|
* match CI names in test scriptBrent Cook2023-03-231-2/+2
|
* fix mips/mips64 buildsBrent Cook2023-03-231-0/+17
|
* handle i?86 for 32-bit CMake buildsBrent Cook2023-02-271-1/+2
|
* delete opensslconf.h for each buildBrent Cook2023-02-271-1/+1
|
* set CMAKE_SYSTEM_PROCESSOR when cross compilingBrent Cook2023-02-272-0/+2
| | | | handle x86 as option for 32-bit x86 on Windows
* add conditional around common apt commandsBrent Cook2023-02-271-9/+12
|
* remove inherited CC env variable, consolidate common setupBrent Cook2023-02-271-20/+10
|
* update cross arch tests for arm/aarch64Brent Cook2023-02-251-9/+6
|
* update config.sub and config.guess for M1 Maccatatsuy2022-11-032-1977/+2398
| | | | | config.sub and config.guess on LibreSSL are very old. To build LibreSSL on M1 Mac, we need to update config.sub.
* Set max number of processes for CIkinichiro2022-04-291-7/+7
|
* update badges, further split out actions by OS, add more Linux targetsBrent Cook2021-05-302-22/+4
|
* Use github actions for linux testkinichiro2021-05-221-19/+5
|
* Add after_failure script to show failed test logkinichiro2021-05-191-0/+18
|
* Fix Android CIkinichiro2021-05-091-23/+22
| | | | | | | | - Targeted to Android 8.0 (API level 26) and above - Build for x86_64, x86 and arm64-v8a, stop searching dir for detecting ABI - Use newer version of ndk and cmake - Suppress sdkmanager messages to reduce log output - Add log messages to tell CI running right
* bump arm library versionsBrent Cook2021-05-011-2/+2
|
* Fix android buildkinichiro2020-03-261-3/+2
|
* typo s/NAPI/NAL/kinichiro2019-01-081-1/+1
|
* Add Android build for Travis-CIkinichiro2019-01-051-0/+61
|
* Add ARM build for Travis-CIkinichiro2019-01-041-1/+23
|
* enable cmake mingw builds in travisBrent Cook2019-01-023-0/+35
|
* Have travis do shared and static buildsDon2018-03-211-2/+14
|
* adjust mingw package nameBrent Cook2016-11-131-1/+1
|
* update to trusty distro, remove 3rd-party PPAs for testingBrent Cook2016-11-131-7/+0
|
* add upstream config.guess/config.subBrent Cook2015-12-272-0/+3260
| | | | | This adds refreshed OS and CPU detection. https://www.gnu.org/software/gettext/manual/html_node/config_002eguess.html
* test cmake builds on osx as wellBrent Cook2015-09-171-0/+1
|
* extend regression testsBrent Cook2015-09-171-1/+2
| | | | run distcheck rather than just dist, cmake tests
* speed up builds without killing os x perhapsBrent Cook2015-09-111-1/+1
|
* add cmake test supportBrent Cook2015-09-111-3/+20
|
* Remove cmake tests from travis builds for now.Brent Cook2015-09-091-21/+3
| | | | | This seemed like it should be easy, but apparently there are a lot of gotchas that need to be ironed out in a branch first.
* fix a couple of travis build failuresBrent Cook2015-09-091-2/+2
|
* revert some travis shell portability tweaksBrent Cook2015-09-091-4/+4
|
* try ninja on travis linux againBrent Cook2015-09-091-1/+1
|
* use newer cmake for travis linux builds, revise build scriptBrent Cook2015-09-091-10/+16
|
* travis' cmake does not support ninja, use makeBrent Cook2015-09-091-2/+2
|
* add travis-ci cmake testsBrent Cook2015-09-091-0/+12
|
* enable libtls by defaultBrent Cook2015-03-191-2/+2
| | | | | | | | The API/ABI for the LibreSSL 2.1.x series is now fixed, so we can safely enable libtls it by default. This is useful for new OpenNTPD and OpenSMTPD releases as well. ok deraadt@ beck@ sthen@
* be even nicer to OS X's forkBrent Cook2015-01-311-1/+0
|
* be nicer to travis OS X machines, remove unneeded 'make clean'Brent Cook2015-01-311-11/+15
|
* only use the specific build matrixBrent Cook2015-01-311-3/+5
| | | | use sudo to install mingw toolchains
* update travis-ci build to check mingw32/64 targetsBrent Cook2015-01-311-0/+28
|
* move public domain to top, help automatic toolsBrent Cook2015-01-021-1/+3
|
* Change comments to remark on script not being needed for clang >= 5.1Jim Barlow2015-01-011-3/+7
|
* configure.ac: use executable hardening where availableJim Barlow2014-12-231-0/+25
Where available, enable stack smashing protection, fortify source, no-strict-overflow, and read only relocations. Many Linux distributions automatically enable most of these options. They are no brainers. The difference introduced here is in asking for a few more aggressive options. An option to disable the more aggressive options is provided (--disable-hardening). When set, configure will fall back to the default CFLAGS on the system - in many cases that will still be hardened. There is no point in going further than that. Options enabled are: -fstack-protector-strong is a relatively new GCC-4.9 feature that is supposed to give a better balance between performance and protection. -all is considered too aggressive, but was used in Chromium and other security critical systems until -strong became available. Follow their lead and use -strong when possible. clang 6.0 supports -all but not -strong. _FORTIFY_SOURCE replaces certain unsafe C str* and mem* functions with more robust equivalents when the compiler can determine the length of the buffers involved. -fno-strict-overflow instructs GCC to not make optimizations based on the assumption that signed arithmetic will wrap around on overflow (e.g. (short)0x7FFF + 1 == 0). This prevents the optimizer from doing some unexpected things. Further improvements should trap signed overflows and reduce the use of signed to refer to naturally unsigned quantities. I did not set -fPIE (position independent executables). The critical function of Open/LibreSSL is as a library, not an executable. Tested on Ubuntu Linux 14.04.1 LTS, OS X 10.10.1 with "make check". The code added to m4/ is GPLv3 but con Signed-off-by: Jim Barlow <jim@purplerock.ca>