| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
The flake8 we were running on CI was too old and began giving spurious
errors about the uninterpreted contents of f-strings. Update to the
latest flake8 and fix all the new errors, including the previously
incorrect comment syntax in the .flake8 file.
Also remove scripts/storage.py, since it didn't seem to be used for
anything we currently need.
|
| |
|
|
|
|
| |
This will hopefully get setup-python to install Python for the correct
architecture now that the macos runners have switched to ARM.
|
|
|
|
|
| |
Github actions CI started to fail for no obvious reason. It seems some VM change
happened, and very recent LLVM/clang is needed to keep running sanitizers.
LLVM 18 is the first version that works.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Simply build wasm-opt with Emscripten and bundle that up.
Example build:
https://github.com/kripken/binaryen/releases/tag/wasm-build-1
Specifically
binaryen-wasm-build-1-wasm.tar.gz
Only 1.72 MB, as it's just wasm-opt and not any other tool, so it is
much smaller than our other targets. Perhaps we will add more of the
tools later as needed (wasm-metadce, wasm-split, etc.).
Also update the readme regarding which toolchains use us as a library, that I
noticed while editing it to add the release platforms.
|
|
|
| |
Fixes #6311
|
|
|
| |
Something changed in how CI sets up Python and now this is needed to avoid an error.
|
|
|
| |
Seems to fix #6116
|
|
|
|
| |
Update the C++20 builder to use Ubuntu 20.04 to catch problems building with its
system compiler. Also fix such a problem in wasm-fuzz-lattices.cpp.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Replace the static assertions ensuring that Lattice types have the necessary
operations with a C++20 concept called `Lattice`. To avoid name conflicts with
the new concept, rename existing type parameters named `Lattice` to `L`. When
not building with C++20, `Lattice` is a macro that resolves to `typename` so the
code continues compiling and has the same behavior, but without any eager checks
of the requirements on lattices.
Add a new C++20 builder to CI to ensure that future changes compile with both
C++17 and C++20. Once we switch to C++20 by default, the new builder can be
removed. Update the lint builder to use a recent clang-format that understands
concepts.
|
|
|
| |
Disable codecov GitHub comments and PR-specific coverage checks.
|
|
|
|
| |
While useful these annotations in the GitHub code review UI, are also extremely
intrusive and make reading code under review harder.
|
|
|
|
| |
Add a codecov.yml file configuring CodeCov to be in informational mode, meaning
that it will never report a failure.
|
|
|
|
|
|
| |
Add a CI step to build with gcov instrumentation and run the lit test suite to
gather profiles, then upload those profiles to codecov.io to generate a code
coverage report for each PR. The goal is not necessarily to achieve 100% code
coverage, but rather to help find important missing test cases and dead code.
|
| |
|
|
|
| |
This workaround is no longer needed after commit emscripten-core/emscripten@ce4c405.
|
|
|
|
|
| |
The current CI breakage is due to
https://github.com/emscripten-core/emscripten/pull/17948. Pin the Emscripten
version used in CI until that can be investigated and resolved.
|
|
|
|
|
| |
This reverts commit 6cc44fd11ba550ea7149fbc868a9b70aa58822a6.
#5075 fixes the require() issue, so we don't need the pin.
|
|
|
| |
See emscripten-core/emscripten#17851
|
|
|
|
|
|
|
|
|
| |
(#4640)
Without this the CMake step fails on not finding
googletest/googletest/src/gtest_main.cc
Fixes #4639
|
|
|
|
|
|
|
|
|
|
| |
Add
-DCMAKE_INSTALL_PREFIX=out/install
to all builds. This is now needed on CI for some reason that I cannot figure out.
Fixes #4576
Fixes #4575
|
|
|
| |
To help debug them when they go wrong, as seems to be happening on #4574.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Add gtest as a git submodule in third_party and integrate it into the build the
same way WABT does. Adds a new executable, `binaryen-unittests`, to execute
`gtest_main`. As a nontrivial example test, port one of the `TypeBuilder` tests
from example/ to gtest/.
Using gtest has a number of advantages over the current example tests:
- Tests are compiled and linked at build time rather than runtime, surfacing
errors earlier and speeding up test execution.
- Tests are all built into a single binary, reducing overall link time and
further reducing test overhead.
- Tests are built from the same CMake project as the rest of Binaryen, so
compiler settings (e.g. sanitizers) are applied uniformly rather than having
to be separately set via the COMPILER_FLAGS environment variable.
- Using the industry-standard gtest rather than our own script reduces our
maintenance burden.
Using gtest will lower the barrier to writing C++ tests and will hopefully lead
to us having more proper unit tests.
|
|
|
| |
There is now a new zip file in each release with 'arm64' in its name, to go along with the x86_64 package.
|
|
|
| |
Use CMake's configure_file() instead.
|
| |
|
|
|
|
|
| |
releases. NFC (#4362)
Fixes: #4148
|
|
|
| |
It seems that now alpine requires pip3.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Previously, ref.func instructions would be assigned the canonical (i.e. first
parsed) heap type for the referenced function signature rather than the HeapType
actually specified in the type definition. In nominal mode, this could cause
validation failures because the types assigned to ref.func instructions would
not be correct.
Fix the problem by tracking function HeapTypes rather than function Signatures
when parsing the text format.
There can still be validation failures when round-tripping modules because
function HeapTypes are not properly preserved after parsing, but that will be
addressed in a follow-up PR.
|
|
|
|
|
|
| |
CMake has a `sha256sum` subcommand that can be used to calculate checksums
portably. Use it in the release workflow to create checksums on Windows.
For consistency, use it on macOS and Linux too.
|
|
|
|
| |
These steps diff between a PR and upstream which doesn't
really make sense for normal CI runs.
|
|
|
|
|
|
| |
Also fix the underlying issue which was that `lit` was not
being correctly installed via pip3.
See #3459
|
|
|
|
| |
We have updated the default branch name from "master" to "main." This PR updates
scripts, configurations, and docs to reflect this change.
|
|
|
| |
Also adjust the check for Clang to also match AppleClang
|
|
|
|
|
|
|
|
| |
This uses the same technique used in llvm-lit to enable
running on in-tree tests with out-of-tree builds.
So you can run something like this:
../binaryen-out/bin/binaryen-lit test/lit/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
lit and FileCheck are the tools used to run the majority of tests in LLVM. Each
lit test file contains the commands to be run for that test, so lit tests are
much more flexible and can be more precise than our current ad hoc testing
system. FileCheck reads expected test output from comments, so it allows test
output to be written alongside and interspersed with test input, making tests
more readable and precise than in our current system.
This PR adds a new suite to check.py that runs lit tests in the test/lit
directory. A few tests have been ported to demonstrate the features of the new
test runner.
This change is motivated by a need for greater flexibility in testing wasm-split.
See #3359.
|
|
|
|
|
| |
This file makes it simple for users and CI bots to install all the Python dev
dependencies necessary to run the test suite. Right now it only contains flake8,
but soon it will contain lit and filecheck as well (see #3367).
|
| |
|
|
|
|
| |
- Add a MinGW CI build
- Add compiler flag to successfully build on MinGW
|
|
|
| |
LSan had to be disabled a while ago due to issues with CI runners, but these problems have been resolved indirectly meanwhile by switching to GitHub Actions. Turned out that a few new problems slipped through since then due to not checking anymore, but these are fixed now, so LSan can be enabled again.
|
|
|
| |
Followup on #3052
|
|
|
|
|
|
| |
This means we will also include any headers or libraries that
are part of the `install` step.
Fixes: #3048
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This lets us run most tests at least on that platform.
Add a new function for skipping those tests, skip_if_on_windows,
so that it's easy to find which tests are disabled on windows for later fixing
efforts.
This fixes a few minor issues for windows, like comparisons
should ignore \r in some cases.
Rename all passes tests that use --dwarfdump to contain "dwarf"
in their name, which makes it easy to skip those (and is clearer
anyhow).
|
|
|
|
|
|
|
| |
Also, perform cmake --install before archive assets during
normal CI builds. This means we include the binaryen shared
library on platforms that use it.
Fixes: #2946 #2962
|
|
|
|
|
|
|
| |
Turned out that the behavior of MODULARIZE_INSTANCE, which has
been removed from Emscripten lately, cannot be easily reproduced
using MODULARIZE. So, instead of modularizing and attempting to
undo it, this just uses some good old wrapper code to achieve the same.
|
|
|
|
| |
MODULARIZE_INSTANCE (#2834)
|
|
|
|
|
|
| |
(#2830)
We need to find another approach than MODULARIZE_INSTANCE, which
is not trivial. This unbreaks CI for now.
|
|
|
|
|
|
|
|
|
|
|
| |
Even though `Release` is the default configuration for make better
to be explicit.
Also, for windows build we need to make sure we pass `--config Release`
when actually building since the projects files will build Debug by
default regardless of CMAKE_BUILD_TYPE.
Fixes: #2825
|
| |
|