- Move emscripten download into its own script - Refactor the common "CI choice" prompt into its own file. - Move the content of `build/common/ci-common.sh` to the "CI choice" script. - Mention the get-emscripten.sh script in BUILDING.md
12 lines
227 B
Bash
Executable File
12 lines
227 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source `dirname $0`/../common/ci-check.sh
|
|
|
|
set -e
|
|
set -x
|
|
|
|
source `dirname $0`/../common/build-common.sh
|
|
pushd `dirname $0`/../.. > /dev/null
|
|
|
|
./build.sh -c $RUN_TESTS $GENERATE_ARCHIVES $BUILD_DEBUG $BUILD_RELEASE
|