aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* integrate new upstream endbr64 test code, remove os-specific revertsBrent Cook2024-03-037-1751/+1223
|
* Windows: Improve the check for endianness when using Visual Studio.Christian Andersen2024-03-032-1/+25
| | | | | | | | Visual studio does not define __BYTE_ORDER__ so all architectures were detected as LITTLE_ENDIAN since both __BYTE_ORDER__ and __ORDER_LITTLE_ENDIAN__ would evaluate to 0 and compare equal. This updates the checks to use CMakes detection of endianness, with a hard error, if this also fails.
* Windows: Don't set -Wall when compiling with Visual Studio.Christian Andersen2024-03-031-2/+2
| | | | | As it enables a lot of spammed warnings that are not part of W4. This reduces the warnings a lot when compiling LibreSSL in CLion for me.
* Windows: Fix assertion pop-up up when using Debug compiled libressl.Christian Andersen2024-03-031-0/+2
| | | | | | | | | | | When running the signertest, or the test project in https://github.com/libressl/portable/issues/266 an assertion window pops up. This was fixed in afcd4be8a72a for a release compiled library. To prevent the issue in debug mode, it looks like it is necessary to also disable the assertion window popup. With this all tests pass when compiling and running them with a Debug, Release or RelWithDebInfo CMake build on windows (for me).
* CI: limit scheduled runs to "libressl" org onlyIlya Shipitsin2024-03-036-0/+6
|
* cmake: disable ASM for Windows ARM64Viktor Szakats2024-03-031-0/+3
| | | | | With ASM support the builds either exit with an assert or hang (with asserts disabled).
* Fix timingsafe memcmp detectionTheo Buehler2024-03-031-2/+2
|
* pthread_once() returns an error code on failureTheo Buehler2024-03-031-1/+1
|
* Stop undefining X509_CERT_PAIRTheo Buehler2024-03-031-4/+2
| | | | Pointed out in #910
* readme: fix grammatical errorJoshua Sing2024-03-031-1/+1
| | | Co-authored-by: Theo Buehler <botovq@users.noreply.github.com>
* readme: tidy up stylingJoshua Sing2024-03-031-37/+57
|
* ci: add concurrency groups to workflowsJoshua Sing2024-03-0311-0/+44
|
* ci: remove autoconf from msys2 in windows workflowJoshua Sing2024-03-031-1/+0
|
* ci: avoid unnecessary steps in windows workflowJoshua Sing2024-03-031-4/+2
|
* ci: tidy windows workflow job nameJoshua Sing2024-03-031-1/+1
|
* ci: fix windows workflow syntaxJoshua Sing2024-03-031-1/+1
|
* readme: add windows badgeJoshua Sing2024-03-031-0/+1
|
* ci: clean up windows workflowJoshua Sing2024-03-032-46/+66
|
* Add Solaris workflow badge to readmeJoshua Sing2024-03-031-0/+1
|
* ci: clean up release workflowJoshua Sing2024-03-033-66/+155
|
* ci: fix apt commands in solaris workflowJoshua Sing2024-03-031-1/+2
|
* ci: cleanup coverity workflowJoshua Sing2024-03-031-40/+57
|
* ci: reenable and clean up solaris workflowJoshua Sing2024-03-032-28/+31
|
* Fix build on windowsTheo Buehler2024-03-031-0/+1
|
* cmake: limit some macros to mingwViktor Szakats2024-03-031-5/+7
| | | | | | Syncing this up with autotools. Also use the built-in `MINGW` variable.
* CI: fix automatic releases assets extension "zip"Ilya Shipitsin2024-03-031-2/+1
|
* pthreads.h: avoid undefined behaviorTheo Buehler2024-03-031-3/+8
| | | | | | | You can't pass a function pointer through a void pointer. So wrap the pthread callback in a struct. Fixes #966
* zap stray whitespaceTheo Buehler2024-03-031-1/+1
|
* Update .github/workflows/release_by_tag.ymlIlya Shipitsin2024-03-031-1/+2
| | | Co-authored-by: Joshua Sing <joshua@hypera.dev>
* CI: automatically create release, upload windows buildsIlya Shipitsin2024-03-031-0/+66
|
* windows: minor compat header fixesViktor Szakats2024-03-033-2/+2
| | | | | | - posix_win.c: use `snprintf` as-is with _MSC_VER >= 1900 - stdio.h: include socket header before windows.h - pthread.h: delete exec permission from source file
* Add configure check for strcasecmpTheo Buehler2024-03-031-1/+2
|
* cmake: auto-detect `strtonum`Viktor Szakats2024-03-031-0/+5
| | | | | | | | | | | | | | Notice that just like in autotools, this detection also doesn't take into account the targeted OS version. Meaning it detects `strtonum` even if targeting e.g. macOS older than release v11 Big Sur (which introduced this funcitions), if the SDK declares it. Wrong detection will either cause a binary broken on older macOS and/or trigger compiler warnings. Ref: https://github.com/libressl/portable/issues/928#issuecomment-1850178282 Ref: https://github.com/libressl/portable/issues/928#issuecomment-1850276298 Prerequisite: https://github.com/libressl/portable/issues/928#issuecomment-1850356408
* delete broken linkViktor Szakats2024-03-031-2/+1
|
* upgrade links in comments to HTTPSViktor Szakats2024-03-033-4/+4
|
* check-release.sh: use HTTPS when downloading sourcesViktor Szakats2024-03-031-1/+1
|
* windows: always upload build artifacts, even in case of failureIlya Shipitsin2024-03-031-0/+1
|
* Update solaris vm to latest versionneil2024-03-031-2/+2
| | | Update solaris vm to latest version
* there has to be some trigger, even a manual oneBrent Cook2024-03-032-0/+6
|
* remove Solaris build statusBrent Cook2024-03-031-1/+0
|
* disable periodic builds of broken CI workflowsBrent Cook2024-03-032-10/+0
| | | | | | | | Neither of these has built in over a month. Solaris looks to be an upstream timeout issue (seems the hack it uses may not work anymore). Not sure if cifuzz is really needed either, since we're still being tested through clusterfuzz actively.
* remove additional endbr64 patch, add tests for macos-11Brent Cook2024-03-032-1/+21
|
* Replace rust-openssl patch with an ed scriptTheo Buehler2024-03-032-13/+9
| | | | | It is annoying to update this patch all the time. An easy ed script does the trick just as well.
* Fix rust-openssl regressTheo Buehler2024-03-031-2/+1
| | | | | Change around the order slightly. It seems more logical to apply the patch first, then export the env.
* ci: add --verbose flag to rust-openssl cargo testJoshua Sing2024-03-031-1/+1
|
* ci: tidy up rust-openssl libressl build stepJoshua Sing2024-03-031-5/+0
|
* ci: improve rust-openssl workflowJoshua Sing2024-03-032-33/+40
|
* readme: fix CI workflow badge imagesJoshua Sing2024-03-031-5/+3
| | | | | Update the workflow badge images to use the new workflow names introduced in: #942, #941, #934
* Land #953, Fix build on mipsBrent Cook2023-12-171-0/+2
|
* Land #941, improve Linux github workflowsBrent Cook2023-11-085-87/+62
|\