This means that `./emsdk` works on UNIX system after emsdk self-updates from a zip file. Without this one would need to run `python ./emsdk` which seems to be why the tests were doing it this way.
8 lines
209 B
Bash
Executable File
8 lines
209 B
Bash
Executable File
#!/usr/bin/env sh
|
|
echo "test the standard workflow (as close as possible to how a user would do it, in the shell)"
|
|
./emsdk install latest
|
|
./emsdk activate latest
|
|
source ./emsdk_env.sh --build=Release
|
|
emcc -v
|
|
|