Skip to content

Commit 0c54f1f

Browse files
trxcllntrockhowse
andauthored
Apply suggestions from code review
Co-authored-by: Nate Rock <rockhowse@gmail.com>
1 parent f557a4b commit 0c54f1f

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

ci/build_standalone_c.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ set -euo pipefail
77
TOOLSET_VERSION=14
88
CMAKE_VERSION=3.31.8
99
CMAKE_ARCH=x86_64
10+
NINJA_VERSION=v1.13.1
1011

1112
BUILD_C_LIB_TESTS="OFF"
1213
if [[ "${1:-}" == "--build-tests" ]]; then
@@ -22,10 +23,10 @@ dnf install -y \
2223
if ! 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

0 commit comments

Comments
 (0)