File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ set -euo pipefail
77TOOLSET_VERSION=14
88CMAKE_VERSION=3.31.8
99CMAKE_ARCH=x86_64
10+ NINJA_VERSION=v1.13.1
1011
1112BUILD_C_LIB_TESTS=" OFF"
1213if [[ " ${1:- } " == " --build-tests" ]]; then
@@ -22,10 +23,10 @@ dnf install -y \
2223if ! command -V ninja > /dev/null 2>&1 ; then
2324 case " $( uname -m) " in
2425 x86_64)
25- wget --no-hsts -q -O /tmp/ninja-linux.zip " https://github.com/ninja-build/ninja/releases/download/v1.13.1 /ninja-linux.zip" ;
26+ wget --no-hsts -q -O /tmp/ninja-linux.zip " https://github.com/ninja-build/ninja/releases/download/${NINJA_VERSION} /ninja-linux.zip" ;
2627 ;;
2728 aarch64)
28- wget --no-hsts -q -O /tmp/ninja-linux.zip " https://github.com/ninja-build/ninja/releases/download/v1.13.1 /ninja-linux-aarch64.zip" ;
29+ wget --no-hsts -q -O /tmp/ninja-linux.zip " https://github.com/ninja-build/ninja/releases/download/${NINJA_VERSION} /ninja-linux-aarch64.zip" ;
2930 ;;
3031 * )
3132 echo " Unrecognized platform '$( uname -m) '" >&2
You can’t perform that action at this time.
0 commit comments