Age | Commit message (Collapse) | Author |
|
|
|
|
|
`sudo` invocation in Github Actions does not provide environment variables,
therefore Codecov was not aware of the correct settings.
This behaviour is different under Github Actions than Travis CI.
This could be fixed via `sudo -E`.
Anyway, tests do not need to be run `sudo` with Github Actions,
so remove the `sudo` invocation in the first place.
|
|
|
|
|
|
Update container build script to utilize Github Actions job description
instead of Travis CI's.
|
|
Add support for Github Actions to use as new CI.
This builds all the components as the original Travis CI script.
|
|
System header files on macOS are not part of `/usr/include` since
Catalina. Instead, multiple locations are possible and depend on the
selected SDK.
Use `xcrun` to automatically detect the correct path on macOS.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
used.
|
|
|
|
|
|
|
|
compile it with -D_FORTIFY_SOURCE=0 to avoid infinite recursion.
|
|
|
|
|
|
library.
|
|
|
|
|
|
Currently, only 32bit vs. 64bit is supported.
|
|
Every runtime library can be build with multiple configurations.
Replace the Makefile-based setup by cmake one.
Currently, we generate 32bit and 64bit libraries simultaneously and can link against them.
|
|
|
|
|
|
|
|
|
|
Ubuntu 16.04 supports cmake 3.5.0 as default.
Cmake 2.8.12 was the default in 14.04.
Use cmake 3 to simplify cmake files.
|
|
This was executing the loop when n==0 leading to an out of bound pointer
error.
Found while verifying Rust code that compares strings.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|