Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,29 @@ jobs:
gcc
- name: Build
run: msys2 -c "make PLATFORM=msys"
cmake-emscripten-build:
name: cmake emscripten-build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install emscripten
run: sudo apt install -y emscripten
- name: Build
run: |
emcmake cmake .
cmake --build .
make-emscripten-build:
name: make emscripten-build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install emsdk and build
run: |
sudo apt install -y git python3 cmake
git clone https://github.com/emscripten-core/emsdk.git
cd emsdk
./emsdk install latest
./emsdk activate latest
source ./emsdk_env.sh
cd ..
make js