| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
| |
Split out from #1843
|
|
|
|
|
| |
The wrong name here was causing a cmake warning because
it was finding `config.h.in` instead and this behaviour is
deprecated.
|
| |
|
| |
|
|
|
|
|
|
| |
It seems that the action we were using is not longer working:
https://github.com/actions/upload-release-asset
See https://github.com/WebAssembly/binaryen/pull/4148
|
|
|
|
|
|
|
|
|
|
| |
This adds clang-format check to the CI. This only checks the diff so it
doesn't affect the other parts of the codebase. Also generated files in
src/prebuilt/ directories are excluded from the check. A new
src/prebuilt/.clang-format is added to disable the check in the
directory.
scripts/clang-format-diff.sh is copied from the same file we are using in
Binaryen.
|
|
|
|
|
|
| |
closes #1315
result can be seen here
https://github.com/rofl0r/wabt/releases/tag/9.9.99d
|
|
|
|
| |
Fixes: #1249
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
| |
This adds some more nuanced triggering for github actions.
|
| |
|
|
|
|
| |
All tests except `threads` pass.
|
|
|
| |
Fixes #1180 and #1181.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
New `check` target now runs other. This allows for github actions to
show unittests and system tests as separate steps.
Also a couple of CMakeLists.txt cleanups:
- Don't use add_definition to add `-fno-exceptions`, this is a C++-only
flag.
- Lowercase the name of the `sanitizer` function.
- Remove opcode.def from list of library input file. On windows when
building a DLL .def files are assumed to be windows DLL .def files,
which this is not.
This change is split out from #1250
|
| |
|
|
This adds a basic workflow that builds and tests wabt on all three
desktop platforms.
The plan is to extend this to completely replace travis and appveyor
in the future.
Remove the 2.7 requirement for python in CMakeLists.txt due to issue
with github actions where this ends up selected in the wrong (mingw)
version of python. See:
https://github.com/actions/setup-python/issues/40
|