mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-10-31 19:36:16 +00:00
ef562d0d43
For testing the emscripten build in TravisCI, it looks like some arcane combination of node + Browserify + the wasmify plugin + maybe some other stuff *might* work, but I have no real idea yet. For grabbing the build artifacts from Travis, you can temporarily insert lines into the .travis.yml such as curl --upload-file ./hyper.html https://transfer.sh/hyper.html curl --upload-file ./hyper.js https://transfer.sh/hyper.js curl --upload-file ./hyper.wasm https://transfer.sh/hyper.wasm However, "hyper.wasm" is about 2.8 megabytes in size, so this hack definitely should never become part of the *master* `.travis.yml`.
4 lines
133 B
Bash
Executable File
4 lines
133 B
Bash
Executable File
#!/bin/sh
|
|
/usr/lib/emscripten/em++ hyperweb.cpp -O3 -s LEGACY_GL_EMULATION=1 -s TOTAL_MEMORY=128*1024*1024 -std=c++11 -o hyper.html
|
|
|