diff options
Diffstat (limited to 'ci')
| -rwxr-xr-x | ci/buildserver-build.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ci/buildserver-build.sh b/ci/buildserver-build.sh index 84d303a1ef..802a45ddc0 100755 --- a/ci/buildserver-build.sh +++ b/ci/buildserver-build.sh @@ -101,8 +101,11 @@ build_ref() { git submodule update git clean -df - # Make sure we have the latest Rust toolchain before the build + # Make sure we have the latest Rust and Node toolchains before the build rustup update + if command -v nvm > /dev/null; then + nvm install --latest-npm + fi ./build.sh || return 0 case "$(uname -s)" in |
