* Update to Python 3.x to generate the build scripts and other related things * Update to Clang 12.x to work with Visual Studio 2022 * Update all Windows builds to use Visual Studio 2022 * Update the required .net tools * Streamline the pipeline a bit more * Extracted all the tool install yaml into scripts so they can be better edited and tracked
6 lines
150 B
Bash
Executable file
6 lines
150 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
git clone --branch $@ https://github.com/emscripten-core/emsdk ~/emsdk
|
|
~/emsdk/emsdk install $@
|
|
~/emsdk/emsdk activate $@
|