Skip to content

Commit

Permalink
Add missing ASM files and update .gitignore (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
snnn authored Oct 23, 2024
1 parent e31528e commit 98eade3
Show file tree
Hide file tree
Showing 28 changed files with 12,643 additions and 393 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/linux_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ jobs:
CFLAGS="-O0 -g -fsanitize=address" CXXFLAGS="-O0 -g -fsanitize=address" emcmake cmake .. -DCMAKE_BUILD_TYPE=Debug -DMLAS_ENABLE_WEBASSEMBLY_THREADS=ON
make -j $(nproc) all
ctest --output-on-failure
Linux_wasm_release:
runs-on: ubuntu-24.04
steps:
Expand All @@ -137,3 +138,22 @@ jobs:
CFLAGS="-O2 -DNDEBUG -g" CXXFLAGS="-O2 -DNDEBUG -g" emcmake cmake .. -DCMAKE_BUILD_TYPE=Release -DMLAS_ENABLE_WEBASSEMBLY_THREADS=ON
make -j $(nproc) all
ctest --output-on-failure
Linux_wasm_release_no_exception:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: |
set -e -x
rm -rf build
mkdir -p build
cd build
git clone https://github.com/emscripten-core/emsdk.git
cd emsdk
./emsdk install latest
./emsdk activate latest
source emsdk_env.sh
cd ..
CFLAGS="-O2 -DNDEBUG -g" CXXFLAGS="-O2 -DNDEBUG -g" emcmake cmake .. -DCMAKE_BUILD_TYPE=Release -DMLAS_ENABLE_WEBASSEMBLY_THREADS=ON -DMLAS_ENABLE_WEBASSEMBLY_EXCEPTION_CATCHING=ON
make -j $(nproc) all
ctest --output-on-failure
Loading

0 comments on commit 98eade3

Please sign in to comment.