File tree Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 22
33set -ex
44
5+ source versions.sh
56source shared.sh
67
7- # Try to keep the LLVM version here in sync with src/ci/scripts/install-clang.sh
8- LLVM=llvmorg-20.1.0-rc2
8+ # Should be in sync with src/ci/scripts/install-clang.sh
9+ LLVM=llvmorg-$LLVM_VERSION
910
1011mkdir llvm-project
1112cd llvm-project
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ # To keep docker / non-docker builds in sync
4+
5+ # renovate: datasource=github-releases depName=llvm/llvm-project versioning=semver-coerced extractVersion=^llvmorg-(?<version>\d+\.\d+\.\d+(?:.*))
6+ export LLVM_VERSION=20.1.3
Original file line number Diff line number Diff line change 77set -euo pipefail
88IFS=$' \n\t '
99
10+ # LLVM_VERSION should be in sync with src/ci/docker/scripts/build-clang.sh
11+ source " $( cd " $( dirname " $0 " ) " && pwd) /../docker/scripts/versions.sh"
1012source " $( cd " $( dirname " $0 " ) " && pwd) /../shared.sh"
1113
1214# Update both macOS's and Windows's tarballs when bumping the version here.
13- # Try to keep this in sync with src/ci/docker/scripts/build-clang.sh
14- LLVM_VERSION=" 20.1.3"
15-
1615if isMacOS; then
1716 # FIXME: This is the latest pre-built version of LLVM that's available for
1817 # x86_64 MacOS. We may want to consider building our own LLVM binaries
You can’t perform that action at this time.
0 commit comments