summaryrefslogtreecommitdiff
path: root/.github/workflows/create_release.yml
Commit message (Collapse)AuthorAgeFilesLines
* Add a WebAssembly build to release (#6351)Alon Zakai2024-02-271-0/+66
| | | | | | | | | | | | | | | | | | | 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.
* Build and release on aarch64 (#6334)Darren Worrall2024-02-231-3/+12
| | | Fixes #6311
* Setup git submodules so googletest is fetched, unbreaking alpine in releases ↵Alon Zakai2022-05-041-0/+2
| | | | | | | | | (#4640) Without this the CMake step fails on not finding googletest/googletest/src/gtest_main.cc Fixes #4639
* Build ARM64 MacOS releases (#4397)Derek Schuff2022-01-051-3/+29
| | | There is now a new zip file in each release with 'arm64' in its name, to go along with the x86_64 package.
* Remove python from CMake build (#4324)Blaine Bublitz2022-01-041-3/+0
| | | Use CMake's configure_file() instead.
* Fix filenames in create_release CI workflow (#4366)Sam Clegg2021-12-091-2/+2
|
* Switch to new github actions (`softprops/action-gh-release`) for building ↵Sam Clegg2021-12-011-0/+136
releases. NFC (#4362) Fixes: #4148